Jump to content

INSERT into 2 tables of DB


leeandrew

Recommended Posts

Hi, when a user signs up their data is inserted into table `users`, i want to be able to have data inserted into another table simultaneously aswell, a table called `user_details`.

 

I have tried this but it isnt working:

 

// Connect to the host.
$link = OpenConnection();

$todaysDate = date("Y-m-d");
$query = "INSERT INTO $dbaseUserData (lid,username,password,email,icon,usertype,since) values ('$leagueID','$username','$encryptpass','$email','$icon','1','$todaysDate')";
$query2 = "INSERT INTO user_details (username,password,email) values ('$username','$encryptpass','$email')";
$result = mysql_query($query, $query2)
  or die("Query failed: $query, query2");

CloseConnection($link);

 

Can anyone help out, what is wrong with the code?

Link to comment
Share on other sites

// Connect to the host.
$link = OpenConnection();

$todaysDate = date("Y-m-d");
$query = "INSERT INTO $dbaseUserData (lid,username,password,email,icon,usertype,since) values ('$leagueID','$username','$encryptpass','$email','$icon','1','$todaysDate')";
$query2 = "INSERT INTO user_details (username,password,email) values ('$username','$encryptpass','$email')";
$result1 = mysql_query($query)
  or die("Query failed: $query");
$result2 = mysql_query($query2)
  or die("Query failed: $query2");


CloseConnection($link);

Link to comment
Share on other sites

or try

// Connect to the host.
$link = OpenConnection();

$todaysDate = date("Y-m-d");
$query = "INSERT INTO $dbaseUserData (lid,username,password,email,icon,usertype,since) values ('$leagueID','$username','$encryptpass','$email','$icon','1','$todaysDate');";
$query .= "INSERT INTO user_details (username,password,email) values ('$username','$encryptpass','$email');";
$result = mysql_query($query)
  or die("Query failed: $query");

CloseConnection($link);

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.