Can someone tell me what is wrong with this line of code? I am getting an error (yet the the page still functions properly despite the error)
Error:
"Notice: Undefined index: picture in C:\wamp\www\pplogin\members.php on line 180"
Here is the code:
179 $target = "user_images/fs/";
180 $target = $target . basename($_FILES['picture']['name']);
Like I said earlier despite the error the image gets uploaded to the destination and the image name is saved to my MySQL database.
I've been scratching my head for a while now...