Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.