> Can someone tell me how to link Mysql and Php Admin Databse with my Login / Registration Page ?

Can someone tell me how to link Mysql and Php Admin Databse with my Login / Registration Page ?

Posted at: 2014-12-18 
Create a php file with your database details.


include("connect_file.php");

// rest of your code here

?>

Connect file.php:


$con = mysqli_connect('host','user','pass','dat...

Just use the "include" function to link your database.