Forum: MySQL Mar 28th, 2008 |
| Replies: 7 Views: 1,969 The table already exists. Your latest code is correct (the other you had "$database_name" in quotes, which is incorrect).
Matti Ressler
Suomedia |
Forum: MySQL Mar 27th, 2008 |
| Replies: 7 Views: 1,150 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: 652 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 =... |