Yea, ur gona need a registration page and login page 😛. I recommend you take a look on this forum for past code people have included and read up on it. I STRONGLY recommend u go 2 a webpage that shows you step by step tutorials on how 2 do exactly what u want, try lookin in the tutorials on this site, and http://www.php-developer.com/zend/tut/.
What ur gona need 2 do, is make html forms that link to each php script. Like a registration page, say u have the fields: Username, Password, Email as ur field values, heres wot u wud do...
// Make sure all fields are filled
if ($Username && $Password && $Email)
{
// Select the database
mysql_select_db($databasename) or die ("Couldnt select database: ".mysql_error());
$query = "INSERT INTO $table (Username, Password, Email) values ('$Username', '$Password', '$Email');
// Do the query
mysql_db_query($databasename, $query) or die ("Query failed: ".mysql_error());
print "Membership added!";
}
else
{
print "Fill in all required fields";
}
Well..thats the "basic" registration kinda thing, just 2 give u the idea.