Jump to content

Fetching id from separate table


Smudly

Recommended Posts

I am attempting to capture the users id from the Users table, and have it copied to the userid row once a user submits a website.

 

Here is the code I am using, and so far it is not working.

 

In my Users table is the user's id number (auto increment) which is called id.

I want that value to be copied over to the websites table in the row called userid.

 

$query = mysql_query("SELECT id FROM users WHERE id='$id'");

$result = mysql_fetch_assoc($query);
$userid = $result['id'];

$query2 = mysql_query("INSERT INTO websites VALUES ('','$userid','$url','$credits','','','','$title')");

 

 

Any suggestions would be awesome.

Thanks

     

 

Link to comment
https://forums.phpfreaks.com/topic/204208-fetching-id-from-separate-table/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.