Smudly Posted June 8, 2010 Share Posted June 8, 2010 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 Quote Link to comment https://forums.phpfreaks.com/topic/204208-fetching-id-from-separate-table/ Share on other sites More sharing options...
ignace Posted June 8, 2010 Share Posted June 8, 2010 What is not working? What is the current output? And what is the desired output? Quote Link to comment https://forums.phpfreaks.com/topic/204208-fetching-id-from-separate-table/#findComment-1069646 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.