Jump to content

Recommended Posts

Hello,

 

Could someone please help me? I want to get the UserID (UID) from the users table and then put it together with a CourseID (CID) into a table called enrollment.

 

I know it's wrong (because it is not working), and I think there may be an array involved, but could someone correct my syntax for me? This is what I have so far:

 

$ID = mysql_query("SELECT UID FROM users WHERE username=$username");

 

mysql_query("INSERT INTO enrollment (UID, CID) VALUES('$row','$course')");

Link to comment
https://forums.phpfreaks.com/topic/41358-solved-mysql-help-in-pulling-user-id/
Share on other sites

mysql_query only gives you a result set. You need to use mysql_fetch_assoc() or something similar to get the info out of that result set.

 

Conversely, you could just write it into 1 query.

INSERT INTO enrollment (UID, CID) 
SELECT UID, '$course' FROM users WHERE username = '$username'

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.