How Can i connect sql database with php? I'm New in PHP

A

Anonymous

Guest
Code:
<?php
$conn = mysql_pconnect('host', 'user', 'password');
if (!$conn)
die('You could not be connected to the database!');

echo 'You are connected to the database';
?>
 
Back
Top