I am getting the alert "Notice: Undefined index: reuse" in response to the following line in install.php:
Code: Select all
if ($_POST['reuse']=='true')Code: Select all
function tableExists($tablename) {
$SQLQuery = "SHOW TABLES";
$Result = mysql_query($SQLQuery);
while($Row=mysql_fetch_row($Result)){
if($Row[0]==$tablename){
return true;
}
}
return false;
}Any ideas, please?