Ask a Question related to PHP Development, Design and Development.
-
Sp Computing #1
Displaying MySQL data inside of a table
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
Sp Computing Guest
-
Cannot edit table data in mysql Administrator (GUI)
darius wrote: You need to also install MySQL Query Browser to edit table data. Then the option in Administrator won't be grayed out. By the... -
Displaying data from an unknown table
I have a simple search I need to implement, but it needs to work for any table. I need to display all the data in #form.itemtype#, I have the... -
CFFORM & TABNAIVAGTOR inside of a table <table> tag
Has anybody else had a problem putting a CFFORM with TABNAVIGATOR inside of a table? My tab system works fine until I put it inside a table which is... -
[PHP] Displaying MySQL data inside of a table
Hi Next time you can find a lot of information about this on www.php.net. Check out this example: <?php $conn = mysql_connect("localhost",... -
mysql load data infile error from inside a perl program
This is my first attempt at writing something with Perl, so this is beyond a newbie question. I'm both creating a table and trying to use the...



Reply With Quote

