|
Posted by George B on 07/18/05 21:42
Hey guys how would i show a filed from a MySQL database in a php file?
Isnt it this?
SELECT * FROM `user`
But that dosent work because it comes out blank :-\
And I already am connected to the database
Code:
mysql_connect ('localhost','myaccount','mypass')
or die ("could not connect to server");
mysql_select_db ('database')
or die ("could not connect to database");
$query = "SELECT *
FROM `user`
LIMIT 0 , 30";
mysql_query($query);
Navigation:
[Reply to this message]
|