displaying results vertically

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. I can resolve this by entering

several times before the </form> "); but im not happy with this is there
another way I have never had a problem before but this has stumped me.
Thanks

function display_offers(){
global $id_link;
print (" <tr>
<td class=\"text\">To find out more information regards any of our
special offers please enter your details against the relevant offer below
and click submit </td>
</tr>
<tr>
<td height=\"25\"><hr width=\"80%\" size=\"1\" noshade=\"noshade\"
/></td>
</tr>
");
$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\">
<tr>
<td width=\"60%\" class=\"largeGreenBold\">$row[offer_title]</td>
<td width=\"40%\"class=\"textsmall\">
<input name=\"name\" type=\"text\" id=\"name\" />
Name</td>
</tr>
<tr>
<td rowspan=\"4\" valign=\"top\" class=\"textsmall\">$row[offer_text]
</td>
<td><input name=\"pcode\" type=\"text\" id=\"pcode\" />
Post Code</td>
</tr>
<tr>
<td><input name=\"house_no\" type=\"text\" id=\"house_no\" />
House Number</td>
</tr>
<tr>
<td><input name=\"eml_addr\" type=\"text\" id=\"eml_addr\" />
Email address</td>
</tr>
<tr>
<td><input name=\"tel\" type=\"text\" id=\"tel\" />
Telephone Number</td>
</tr>
<tr>
<td valign=\"top\"> </td>
<td>
<input type=\"hidden\" name=\"action\" value=\"submit\" />
<input type=\"hidden\" name=\"offer_id\"
value=\"$row[offer_id]\" />
<input type=\"hidden\" name=\"offer\" value=\"$row[offer]\" />
<input name=\"Submit\" type=\"submit\" class=\"buttonText\"
value=\"Submit\" />
</td>

</tr>
<tr>
<td colspan=\"2\" valign=\"top\"><hr width=\"80%\" /></td>
</tr></table>











<br
/>






</form> ");
Chris [ Mi, 21 November 2007 22:03 ] [ ID #1876289 ]

Re: displaying results vertically

On Wed, 21 Nov 2007 21:03:13 GMT, "chris" <chris [at] 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
Martin Jay [ Mi, 21 November 2007 23:40 ] [ ID #1876294 ]

Re: displaying results vertically

that work fine now a big thanks thanks Martin

"Martin Jay" <martin [at] spam-free.org.uk> wrote in message
news:sqc9k3tgl5au4ed0c5v6pv97pvpm6057ti [at] 4ax.com...
> On Wed, 21 Nov 2007 21:03:13 GMT, "chris" <chris [at] 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
Chris [ Fr, 23 November 2007 12:26 ] [ ID #1877569 ]
Miscellaneous » alt.html » displaying results vertically

Vorheriges Thema: Viws.Net
Nächstes Thema: Re: CSS color conditional on content