View Single Post
  #4  
Old 07-03-2002, 04:29 PM
Uranium-235's Avatar
Uranium-235 Uranium-235 is offline
Administrator
 
Join Date: Nov 2001
Location: Mansfield, TX
Posts: 2,469
Send a message via ICQ to Uranium-235 Send a message via AIM to Uranium-235
Default Re: SQL problem! help!

PHP looks easier when working with mysql. You use a Mysql connect function first

mysql_connect("Ip Address", "Username", "password");

Then once you're connected you use query functions.

$query = mysql_query("SELECT * FROM table WHERE row=value");

It's harder to explain like that so I'll provide a link

http://www.php.net/manual/en/ref.mysql.php
Reply With Quote