Moderátor: Moderators















/**********************************************************/
// Alter site_content table to DROP INDEX `id`
/**********************************************************/
$query = "ALTER TABLE `".$table_prefix."site_content` DROP INDEX `id`";
if($result = mysql_query($query))
{
// Display the successful operation message
$output .= "<p>The redundant index, <b>`id`</b>, was successfully removed from the ".$table_prefix."site_content table.</p>";
}
elseif(mysql_errno()==1091)
{
// If the `id` index doesn't exist (mysql_errno 1091) then send a friendly message
$output .= "<p><span class=\"ok\">OK</span> - <b>{$table_prefix}site_content.id</b> index doesn't exist. No action required.</p>";
}
else
{
// If all else fails, send the appropriate failure message
$output .= "<p><span class=\"notok\">Failure:</span> Query failed: " . mysql_error() . "</p>";
}


Užívatelia prezerajúci fórum: Žiadny registrovaný užívateľ nie je prítomný a 1 hosť