Is this the correct way to edit an inserted rows, fields with the name of an image path.
$query = "UPDATE products SET image = $_FILES["file"]["name"] WHERE name = $name";
I am more concerned with the sql syntax then the php for this.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You need quotes around strings, and you should make sure to sanitize the inputs (or better yet, use parameterization – see Bobby Tables).