Originalmente inviato da
vivalataverna
quando crei un database non ci sono tabelle, le devi creare tramite script.
Cmq se vuoi vedere cosa c'è nel database vai pannello->tools->phpmyadmin
io ho gia alcune tabelle ma...
questo è parte dell script:
Codice PHP:
// This is the name of the table where are stored hb.
$dbtable = "";
invece questo è tutto:
Codice PHP:
<?
// This is the link to your MySQL db.
$dbhost = "localhost";
// This is the user name of your MySQL db.
$dbuser = "nintendaro";
// This is the password of your MySQL db.
$dbpassword = "";
// This is the name of your MySQL db.
$dbdatabase = "my_nintendaro";
// This is the name of the table where are stored hb.
$dbtable = "";
// Enable/disable user login for Admin panel. Disable if your server environment doesn't support sessions
$login_required = "true";
// Admin panel user name
$admin_user_name = "admin";
// Admin panel user password
$admin_password = "pass";
// DO NOT CHANGE THIS!
$db = mysql_connect("$dbhost", "$dbuser", "$dbpassword") or die ("Could not connect to database...");
mysql_select_db("$dbdatabase", $db) or die ("Unable to open database...");
?>