Hi,
I have sent a client a url through mail such as:
"http://tempsitename.com/pagename.php?studentid=16"
How can i retrieve the data from the database of this specific student whose id is 16 when the student clicks on the url sent to him?
Please help.
Regards,
shailen
You would use the SQL as follows:
$results = " SELECT * FROM TableName WHERE StudentID = " . $studentid;
Change TableName to the correct Table Name and StudentID to the correct Field Name. SC:
I have thought about doing that, but its just not practical, isnt there a simpler way?