Forum: MySQL Mar 27th, 2008 |
| Replies: 7 Views: 1,151 If your script works but takes forever, you probably need to add indexes to your tables.
Matti Ressler
Suomedia |
Forum: MySQL Mar 22nd, 2008 |
| Replies: 3 Views: 653 A common way to do it is this:
$data = mysql_query('SELECT * FROM `bus_basic` ORDER BY `name` ASC ')
or die(mysql_error());
Print "<table cellpadding=3>";
$count = 0;
while($info =... |