need help connecting database with webpage

Go4Expert Member
25Apr2009,20:57   #1
daveritwick's Avatar
hi there i need help regarding connecting database with web page
i have installed wamp server includes php, sql, apache
but when i run the final coding same as tutorials it give Sql error
need help plz
Go4Expert Founder
25Apr2009,20:59   #2
shabbir's Avatar
Moved to Web Development forum
Go4Expert Member
8May2009,02:16   #3
mclarke1987's Avatar
Any chance you can be more specific with the error? Here's a basic connection/query script. You might want to check the hostname that's a common issue.

<?php
mysql_connect('localhost', 'user', 'pass');
mysql_select_db('dbname');
mysql_query('SELECT * FROM table');
?>