H-

Here ya go. 

http://www.php.net/manual/en/function.pg-connect.php
This page and the links on the left hand column have everything you'll
ever want to know about db connects and sql queries. 8^) 

-Sterling


shawn wrote:
> 
> 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

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to