Jump to content

Anush

New Members
  • Posts

    9
  • Joined

  • Last visited

Everything posted by Anush

  1. Hi Jacques1, That code is working. I use that code as a new page in my site. Actual page that i am going to use is checking whether user is logged in. So i used ur code when user is logged in. Then it is not working.
  2. Thanks jazzman1. But nothing display. same scenario happen.
  3. register_globals setting OFF. PHP Version 5.3.5 This is my code <?php echo 'Content of $_FILES:<br>'; var_dump($_FILES); echo 'Content of $_POST:<br>'; var_dump($_POST); ?> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Upload</title> </head> <body> <form method="post" enctype="multipart/form-data"> <input type="file" name="test_file"> <input type="submit"> </form> </body> </html> Here is the out put when no session is there in my site. Content of $_FILES: array(1) { ["test_file"]=> array(5) { ["name"]=> string(9) "hotel.jpg" ["type"]=> string(10) "image/jpeg" ["tmp_name"]=> string(24) "C:\xampp\tmp\php9B8B.tmp" ["error"]=> int(0) ["size"]=> int(99554) } } Content of $_POST: array(0) { } Here is the out put when session is there in my site. Content of $_FILES: array(0) { } Content of $_POST: array(1) { ["test_file"]=> string(9) "hotel.jpg" }
  4. Here is the out put when no session is there in my site. Content of $_FILES: array(1) { ["test_file"]=> array(5) { ["name"]=> string(9) "hotel.jpg" ["type"]=> string(10) "image/jpeg" ["tmp_name"]=> string(24) "C:\xampp\tmp\php9B8B.tmp" ["error"]=> int(0) ["size"]=> int(99554) } } Content of $_POST: array(0) { } Here is the out put when session is there in my site. Content of $_FILES: array(0) { } Content of $_POST: array(1) { ["test_file"]=> string(9) "hotel.jpg" }
  5. one form upload both data and files
  6. when a file is set to upload if(isset($_POST['uploaded'])){ echo $_POST['uploaded']; } Output====> sdfdf.jpg if(isset($_FILES['uploaded'])){ echo $_FILES['uploaded']; } No output
  7. Thanks Jacques1. But problem not solved. I changed the code. here it is. if(isset($_FILES['uploaded'])){ if($_FILES['uploaded']['name']!== ''){ echo $_FILES['uploaded']['name']; $target = "images/books/"; include("upload_image.php"); //Rename image $original_name=basename($_FILES['uploaded']['name']); if($upload_file==1){ rename("images/books/$original_name","images/books/$book_id.jpg"); } } } No errors appear. but file upload not happen. no uotput from follwing code also. echo $_FILES['uploaded']['name'];
  8. I am using a page to upload an image. Here are the code. This is working. My problem is when the user login and when there is session variables this is not working. please help. error is Notice: Undefined index: uploaded Main page <?php session_start(); if($_FILES['uploaded']['name']!== ''){ $target = "images/books/"; include("upload_image.php"); //Rename image $original_name=basename($_POST['uploaded']['name']); if($upload_file==1){ rename("images/books/$original_name","images/books/$book_id.jpg"); } ?> echo "<form action='' method='POST' enctype='multipart/form-data'><table cellpadding='2' cellspacing='2' border='0'>"; echo "<tr><td></td><td><input class='input-file uniform_on' type='file' name='uploaded' /></td>"; echo "</table></form>"; upload_image.php <?php $target = $target . basename($_POST['uploaded']['name']) ; $upload_file=0; $Err_count=0; if (filesize($_POST['uploaded']['tmp_name']) < 300000){ //300KB if(($_FILES['uploaded']['type'] == 'image/jpg') || ($_FILES['uploaded']['type'] == 'image/jpeg')){ if(is_uploaded_file($_POST['uploaded']['tmp_name'], $target)) { $upload_file=1; $Err_count=0; Info ("The file ". basename( $_POST['uploaded']['name']). " has been uploaded and renamed to relevant image file"); } else { Error ("Sorry, there was a problem uploading your file"); $Err_count=1; } } else{ $Err_count=2; Error ("Your file is not an image of jpg or jpeg"); } } else{ $Err_count=3; Error ("Your file is too large. Please upload less than 300KB"); } ?>
×
×
  • 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.