Jump to content

[SOLVED] Data only going into 1 table


Ell20

Recommended Posts

Im having some trouble with putting data from a form into 2 seperate tables.

 

//Adds data into club table: club_id (auto increment), type of website and club name = working fine

$query1 = "INSERT INTO club (webtype, clubn) VALUES ('$membertype', '$clubn')";

$result = @mysql_query ($query1);

 

//I also need to put club_id into the users table so getting the data from the clubs table

$sql = "SELECT * FROM club WHERE clubn='$clubn'";

$result = mysql_query($sql);

$clubdata = mysql_fetch_array($result);

 

$clubid=$clubdata['club_id'];

 

//This query here dosent insert anything into the table, no errors, just no data

$query2 = "INSERT INTO users (username, club_id, member_type, first_name, last_name, email, password) VALUES ('$username', '$clubid' 'Admin', '$fname', '$surname', '$email', '$pass1')";

$result = @mysql_query ($query2);

}

 

Appreciate any help

 

Cheers

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.