Posted by Martin Jay on 11/21/07 22:40
On Wed, 21 Nov 2007 21:03:13 GMT, "chris" <chris@funkynoodle.co.uk>
wrote:
>Hi hope someone can help this is written in php but im thinking its a html
>question I am trying to display a special offers page that I want to display
>the results vertically down the page but it is displaying
>horizontally and being cut off.
> $sql= "select * from offers where offer_status = 'y' ORDER BY offer_id
>DESC";
> $result = mysql_query($sql, $id_link);
>if ($result){
> while($row = mysql_fetch_array($result)){
> print ("
> <form name=\"form1\" id=\"form1\" method=\"post\" action=\"\">
> <table width=\"100%\" border=\"0\" align=\"left\" cellpadding=\"3\"
>cellspacing=\"0\">
Try removing align="left" from the above table element.
--
Martin Jay
[Back to original message]
|