Is this coding actually possible? Obviously this is a registration form, and I want to create 1 table per user in a single database. Why? In the future I plan to implement mini-profiles, essentially a single user can have multiple profiles, but only one account.
[php]
$con = mysql_connect(“localhost”,“user”,“pass”);
if (!$con)
{
die('Could not connect: ’ . mysql_error());
}
mysql_select_db(“reg_users”, $con);
$sql = “CREATE TABLE $_REQUEST[“username”];
(
playerID int NOT NULL AUTO_INCREMENT,
PRIMARY KEY(personID),
FirstName varchar(15),
)”;
[/php]