I created a datebase called Nuke.
I used LOAD DATA INFILE "nuke.sql" INTO TABLE nuke.table1;
I recieve Query Ok, 2493 rows affected
Now I have the PHP correctly installed. When I run the test it works fine. But Nuke PHP still does not work.
When I pull up config.php I get four error codes and just a white page. Is it my database?
Here is my Config.php file. Tell me if it is wrong.
<?php
$dbhost = "localhost";
$dbuname = "root";
$dbpass = "********";
$dbname = "nuke";
$prefix = "table1";
$user_prefix = "nuke"; (I think this might be wrong please help!)
$dbtype = "MySQL";
?>