Hi all,

I have this code so far:

<?

mysql_connect(localhost, USER, PASS);
mysql_select_db(DB);

$result = mysql_query("SELECT * FROM tbl");

?>

Inside one of my tables, I have one field called IP which contains just over
a thousand IP addresses. I would like these IP addresses to be displayed
inside of a table like this:

<table border="1" cellpadding="5">
<tr>
<td>IP Address #1</td>
<td>IP Address #2</td>
<td>IP Address #3</td>
And so on...
</tr>
</table>

How do I go about acheiving this?

TIA,

SP Computing




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to