You have a much functional API in PHP to communicate with many kind of databases. The best way to se the syntax of what kind of database you shall use is to look at the php manual.. look here
http://se2.php.net/manual/en/... To connect to a mysql-database, you do like this for example...
Code:
$link = mysql_connect("$HOST", "$USER","$PASS") or die ("Could not connect to DB");
mysql_select_db("$DB") or die ("Could not select database:$DB check username or password or if database are up and running\n");
$query = "select * from my supertable";
$result = mysql_query($query) or die ("Failed to execute SQl-query\n"); Fo user authentication you can write your own in php if you like or use apache:s authentication if you are using an apache-webbserver.
Good luck...just post if you get in to trouble..
