franknu Posted May 30, 2007 Share Posted May 30, 2007 ok, i want to update one single file in my database and it is not updating anything here is my display mass-ad.com01 _SESSION:Array ( [user_Name] => franklin [Password] => franklin01 [test1] => This is test1 session variable [test2] => This is test2 session variable ) UPDATE business_info SET `Picture3` = '' WHERE Password='franklin01' here is my code with the new changes\ <?php IF ($_FILES['Picture3']) { $moved3 = false; } define ("UPLOADDIR", "/home/townsfin/public_html/business_images/"); IF (is_uploaded_file($_FILES['Picture3']['tmp_name'])) { $fullpath3 = UPLOADDIR . $_FILES['Picture3']['name']; } IF (move_uploaded_file($_FILES['Picture3']['tmp_name'],$fullpath3)) { $moved3 = true; echo "picture $fullpath3 uploaded"; } if (isset($_POST['submit'])) { $query="UPDATE business_info SET `Picture3` = '". $fullpath3 ."' WHERE Password='".$_SESSION['Password']."'"; $result = mysql_query($query) or die ("Problem with the query: <pre>$query</pre><br>" . mysql_error()); echo"$query"; } ?> Link to comment https://forums.phpfreaks.com/topic/53658-updating-a-single-file/ Share on other sites More sharing options...
MadTechie Posted May 30, 2007 Share Posted May 30, 2007 print_r($_FILES); i bet $_FILES['Picture3']['tmp_name'] isn't set Link to comment https://forums.phpfreaks.com/topic/53658-updating-a-single-file/#findComment-265242 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.