This message was edited by the sim at 2002-7-7 23:52:29
Can anybody help me on how can I connect to my SQL server database using php.Can you inspect why this code will not work upon connecting to the SQL server database? I'm just new to php and I am practicing it right now.
php code ex:
$conn = pg_Connect("dbname=SQLSERVERDB port=80");
if(!$conn) { echo "Error in connecting to DB\n"; exit; }
$result = pg_Exec($conn, "SELECT * FROM table1 WHERE surname '$NAME' ");
Thanks for the help.....