spikypunker Posted January 15, 2009 Share Posted January 15, 2009 All it is is this bit: $query = "INSERT INTO USER (image) VALUES ('$filename') WHERE user='$user' "; it should work, it's rreeeally simple but no joy! IF i take out the WHERE user='$user' bit then it does actually insert into the mysql, it just starts a new entry... I've done echo's of both variables and they come out fine. I've even tried replacing the $user with an actual column name that i know is there!! Why doesnt it work!!!!!! Here is the rest of the code (which all works perfectly, the image uploads just the MySql doesnt update) <?php $user = $_GET['user']; if((!empty($_FILES["uploaded_file"])) && ($_FILES['uploaded_file']['error'] == 0)) { $filename = basename($_FILES['uploaded_file']['name']); $ext = substr($filename, strrpos($filename, '.') + 1); if (($ext == "jpg") && ($_FILES["uploaded_file"]["type"] == "image/jpeg") && ($_FILES["uploaded_file"]["size"] < 1000000)) { $newname = dirname(__FILE__).'/userpics/'.$filename; if (!file_exists($newname)) { if ((move_uploaded_file($_FILES['uploaded_file']['tmp_name'],$newname))) { mysql_connect ("localhost","",""); @mysql_select_db("") or die ("unable to connect"); $query = "INSERT INTO USER (image) VALUES ('$filename') WHERE user='$user' "; mysql_query($query); mysql_close(); echo "It's done! The file has been saved as: ".$newname; } else { echo "Error: A problem occurred during file upload!"; } } else { echo "Error: File ".$_FILES["uploaded_file"]["name"]." already exists"; } } else { echo "Error: Only .jpg images under 350Kb are accepted for upload"; } } else { echo "Error: No file uploaded"; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/140943-solved-simple-line-of-php-not-working-should-be-vsimple/ Share on other sites More sharing options...
revraz Posted January 15, 2009 Share Posted January 15, 2009 You can't INSERT into an existing row, either UPDATE an existing row or INSERT a new row. Quote Link to comment https://forums.phpfreaks.com/topic/140943-solved-simple-line-of-php-not-working-should-be-vsimple/#findComment-737701 Share on other sites More sharing options...
spikypunker Posted January 15, 2009 Author Share Posted January 15, 2009 hahahaha what a chump i am, i'm still happy tho cause now it's working!!! WOOOOOOOOOO )))) $query = " UPDATE USER SET image = '$filename' WHERE user='$user' "; Cheers for the help matey, peace Quote Link to comment https://forums.phpfreaks.com/topic/140943-solved-simple-line-of-php-not-working-should-be-vsimple/#findComment-737726 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.