Hi Guys I've now sorted the sql query and the database is now sorted, but now I want to connect the PHP and sql database
Config.php file
//Mysql Connect | mysql_connect("host","username","password");
//Below example to connect in localhost
$a=mysql_connect("localhost","root","");
//select your database
$b=mysql_select_db("database_name",$a);
I take it I need to specify the "host", "username" and "password" on phpmyadmin this is where the info is I take it? and I also need to specify the "dababase" name
Any help would be brilliant