Hi, I was happily editing this php script until i tried to reduce the line width.I can't.I tried changing the color and the size but nothing changed.I am sure this block of codes is the line i am trying to edit because if i cut the '<hr width=50% color=#ff9933 noShade SIZE=1>' part, the line dissapears. Does php have got something to do with this?I'm using phpdev and editing this on localhost server. echo"<table cellSpacing=0 cellPadding=0 width=75% border=0 align=center> <tr> <td colSpan=3><hr width=50% color=#ff9933 noShade SIZE=1></td> </tr> <tr> <td vAlign=top align=left> <p align=left>Choose Category</td> <td width=20> </td> <td vAlign=top align=right> <p align=right>";
PHP is a server side scripting language and HTML is rendered by browser on client side. So don't worry, its not because of PHP. I used your HTML code and tested it on Internet Explorer and it worked fine. Which browser are you using?
Be carefull, many properties working in IE won't work in FF. Please check what can be done in www.w3.org for HR tag. You should follow the rules displayed there and validate your code with HTML validator, which is the only way to insure your code is working in most browsers.