John,

Try this:

<TABLE>
<?php
$query = "SELECT image_link, web_url FROM testdata";
$result = mysql_query ($query) or die ("Query Failed");
while ($row = mysql_fetch_object ($result))
 {
 printf ("<tr><TD>".$row->image_links."<br>".$row->web_url."</TD>
<TD>".$row->image_link."<br>".$row->web_url."</tr>\n");
 }
 ?>
 </TABLE>

----- Original Message -----
From: "John Bass" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, August 23, 2001 10:30 AM
Subject: [PHP] Need help to create HTML table with 2 columns.


> Hi All,
>
> I am trying to generate a table with two columns.  Each column should
print
> 2 fields named image_link and web_url.  Have spent over week looking
> documentations and trying different coding but nothing is working.  Any
help
> will be greatly appreciated.
>
> <TABLE>
> <?php
> $query = "SELECT image_link, web_url FROM testdata";
> $result = mysql_query ($query) or die ("Query Failed");
> while ($row = mysql_fetch_object ($result))
> {
> printf ("<tr><TD>%s<br>%s</TD> <TD>%s<br>%s</tr>\n", $row->image_link,
> $row->web_url,$row->image_link, $row->web_url);
> }
> ?>
> </TABLE>
>
> Regards,
>
> John Bass
>
> _________________________________________________________________
> Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
>
>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to