I know there is a lot of threads already on this website, but I cant find any that remotely looks like it'd be help to me.
I am getting frustrated over this bit of code error. Any help would be appreciated.
php line 64
$emails = $_REQUEST['email'];
$data = mysql_query("SELECT current_image, email FROM employees where email='$emails'") or die(mysql_error());
//Puts it into an array
while($info = mysql_fetch_array( $data )) { //Outputs the image and other data
Notice: Undefined index: email in /var/www/vhosts/numyspace.co.uk/web_users/home/~unn_u020672/public_html/assignment/user/members.php on line 64
I am asking it to take email and current image from my database, trying to return an image that relates to the email of a user.
Thanks, S