Also, in connect.php, find:
PHP Code:
@mysql_select_db(PHPDIG_DB_NAME,$id_connect);
and replace with:
PHP Code:
if (!mysql_select_db(PHPDIG_DB_NAME,$id_connect)) {
echo "Error: unable to select the database";
exit();
}
Now when you try to create the tables, do you get the above error onscreen?