Jump to content

help


shannel

Recommended Posts

Hi all, wondering if you have any ideas about this. I am trying to do an insert function only if the username exists . I am able to do this successfully BUT i'm having a problem doing the insert only for the ID associated with the username. So it would check if "Susan Bingam" is in the staff_details table, then grabs the ID associated with Susan and adds her into the password table using the password she entered into the html form it should record this ID in the password table too . I would really appreciate your help. Thank you :) Below is the code I have so far. 

$url_id = mysql_real_escape_string($_GET['id']);
$uname = $_POST['uname'];
$check = "(SELECT * FROM staff_details WHERE user_Name = '$uname' && id = '$url_id')";
//echo ($check);  
$checkResult = mysql_query($check);  
//$checkRows = mysql_num_rows($checkResult); 
echo($uname);
if (mysql_num_rows($checkResult) > 0)//isset($checkRows)))// && ($checkRows == 0)) 
	{ 
		
		$password = $_POST['password'];
		$sql2 = "INSERT INTO `password` (ID,password,registration_date) VALUES ('$url_id','$password','') ";
		$query2 = mysql_query($sql2);
		print("SUCCESSFULL.");
	}  else {
				print("Error , you need to be a member of staff to sign up.");
			}
Link to comment
Share on other sites

besides the fact that you can have both post and get parameters at the same time, the logic in your code makes no sense. it will allow anyone who knows a valid user name to register a password for that user and anyone else who comes along can register additional password(s) for that user and add row(s) to the password table. this will either allow someone other than the actual user to register and impersonate that user or it could (if you don't have any restrictions in place) allow multiple rows in your password table for one username, resulting in a mess.

 

what exactly are you trying to accomplish?

Edited by mac_gyver
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.