将图像另存为会话并显示


Save image as session and display it

我正在尝试将文件/图像保存为会话,然后显示它。.

这是包含以下表单的第一页:

  <form method="post">
   <input type="file" name="picture" value="upload" id="file" accept="image/*" onsubmit="return validateForm()">
           </form> 

好的,接下来我将图像保存为会话,并尝试显示它(不成功)。。。

代码:

        <?php 
      if (isset( $_POST['picture'])) 
        $_SESSION['picture'] = $_POST['picture'];
        echo  "<img src=" $_SESSION['picture'] " border='0' /> " 
          ?>

我不知道你实际会做什么,但这是最适合的方法

在表单中放入文件类型时,需要使用全局变量$_FILES

form.html

 <form action="process.php" method="post" enctype="multipart/form-data">
  <label for="picture">Picture:</label>
  <input type="file" name="picture" id="picture"><br>
  <input type="submit" name="submit" value="Upload">
</form>

process.php

<?php
    session_start();
    //make sure you have created the **upload** directory
    $filename    = $_FILES["picture"]["tmp_name"];
    $destination = "upload/" . $_FILES["picture"]["name"]; 
    move_uploaded_file($filename, $destination); //save uploaded picture in your directory
    $_SESSION['picture'] = $destination;
    header('Location: display_picture.php');

display_picture.php

<?php
session_start();
?>
<div>
  <img src="<?php echo $_SESSION['picture']; ?>" alt="picture"/>
</div>