Jump to content

Updating a single file


franknu

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.