I need some little help, here's my sample code that works from my database.
// Mysql
$myHost = "localhost"; // usually 'localhost'
$myUN = "root"; // username for mysql
$myPW = ""; // password for mysql
$myDB = "book"; // name of mysql-database we are going to use
$myConn = mysql_connect($myHost, $myUN, $myPW);
$Query = "SELECT id, title, downloads FROM dl_links LIMIT 4 ";
$Result = mysql_db_query ($myDB, $Query, $myConn);
while ($Row = mysql_fetch_array($Result)) {
echo "<td align=\"left\">downloads: <b>$Row[downloads]</b></td>\n"; == this one here
}
mysql_close($myConn);
I want to create a table that displays only 4 columns per row,
I was wondering on how to display the next items on the [downloads] list?
<tr>
echo "<td align=\"left\">downloads: <b>$Row[downloads]</b></td>\n"; == this one here
</tr>
<tr>
<td> the next four items displays here</td>
help!
</tr>😕