[snip]
#--> If submitted
if($_GET['method']=="optimize")
{
#--> Set to array
$allTables = mysql_query("SHOW TABLES");
if(!$query){ print mysql_error(); }
while($table = mysql_fetch_assoc($allTables))
#for($i = 0; $tableName = mysql_fetch_array($allTables);)
{
#--> Walk that array
foreach($table as $dbName => $tableName)
{
#--> Optimize query
$optimizeTableQuery = mysql_query("OPTIMIZE TABLE
'".$tableName."'");
if(!$optimizeTableQuery){ print mysql_error(); }
}
}
}
anyone?
[/snip]
What, precisely, is the problem? Have you echo'd your query to see what
it looks like?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php