Could someone tell me how to actually execute this script please?

$hostname = "";
$username = "";
$password = "";
$dbName = "";
$userstable = "booking";

MYSQL_CONNECT($hostname, $username, $password)
 or die("Unable to connect to database");

@mysql_select_db( "$dbName")
 or die( "Unable to select database");

$mysql_query INSERT INTO $userstable (client, contact, email, address, city, state, 
zip, phone, fax, model, country, details, type)
VALUES('$client', '$contact', '$email', '$address', '$city', '$state', '$zip', 
'$phone', '$fax', '$model', '$country', '$details', '$type');

MYSQL_CLOSE();

?>

Thanks, also if you know any tutorials for PHP and MySQL

Shawn

Reply via email to