【问题标题】:send an image (optional) with message subject and body?发送带有消息主题和正文的图像(可选)?
【发布时间】:2012-12-09 08:50:24
【问题描述】:

我创建了一个简单的 php 消息系统,供用户相互发送和接收消息。我想要尝试做的是添加一个可选的图像输入字段,以便用户可以选择图像并将其作为消息的一部分发送?

照片需要存储在我服务器上的目录文件夹中,并且图像的名称需要与其他消息字段(即内容、主题、图像名称)一起存储在 mysql 表中。

有人可以告诉我如何调整我的代码来上传带有表单的图像吗?

<?php ob_start(); ?>
  <?php 

// CONNECT TO THE DATABASE
    require('includes/_config/connection.php');
// LOAD FUNCTIONS
    require('includes/functions.php');
// GET IP ADDRESS
    $ip_address = $_SERVER['REMOTE_ADDR'];


?>


  <?php require_once("includes/sessionframe.php"); 
?>


  <?php


    confirm_logged_in();




    if (isset ($_GET['to'])) {
    $user_to_id = $_GET['to'];

}


?> 
  <?php 
//We check if the form has been sent
if(isset($_POST['subject'], $_POST['message_content']))
{
    $subject = $_POST['subject'];
    $content = $_POST['message_content'];
    $image = $POST ['image'];

        //We remove slashes depending on the configuration
        if(get_magic_quotes_gpc())
        {
                $subject = stripslashes($subject);
                $content = stripslashes($content);
                $image = stripslashes($image);

        }


        //We check if all the fields are filled
        if($_POST['subject']!='' and $_POST['message_content']!='')
        {
            $sql = "INSERT INTO ptb_messages (id, from_user_id, to_user_id, subject, content, image) VALUES (NULL, '".$_SESSION['user_id']."', '".$user_to_id."', '".$subject."', '".$content."', '".$image."');";
            mysql_query($sql, $connection);

            echo "<div class=\"infobox2\">The message has successfully been sent.</div>";
        }
}


if(!isset($_POST['subject'], $_POST['message_content']))

if (empty($_POST['subject'])){
        $errors[] = 'The subject cannot be empty.';

    if (empty($_POST['body'])){
        $errors[] = 'The body cannot be empty.';

    }
    }

{
?>


<form action="<?php $_SERVER['PHP_SELF'] ?>" method="post">
    <div class="subject">
  <input name="subject" type="text" id="subject" placeholder="Subject">

   <input type="file" name="image" id="image">

    <textarea name="message_content" id="message_content" cols="50" placeholder="Message" rows="8" style="resize:none; height: 100px;"></textarea>

    <input type="image" src="assets/img/icons/loginarrow1.png" name="send_button" id="send_button" value="Send">

</form>

<?php } ?>

<?php ob_end_flush() ?>

【问题讨论】:

  • 作为一个提示,您必须在表单中添加以下属性:enctype="multipart/form-data"

标签: php mysql message


【解决方案1】:

我刚刚在 Google 上进行了一些挖掘并找到了这段代码。我认为这应该可以满足您的需求,但是您当然必须针对您的实例进行调整。

<?php
  $allowedExts = array("jpg", "jpeg", "gif", "png");
  $extension = end(explode(".", $_FILES["file"]["name"]));
  if ((($_FILES["file"]["type"] == "image/gif")
    || ($_FILES["file"]["type"] == "image/jpeg")
    || ($_FILES["file"]["type"] == "image/png")
    || ($_FILES["file"]["type"] == "image/pjpeg"))
      && ($_FILES["file"]["size"] < 20000)
      && in_array($extension, $allowedExts)){
           if ($_FILES["file"]["error"] > 0){
             echo "Return Code: " . $_FILES["file"]["error"] . "<br>";
           }  else{
                echo "Upload: " . $_FILES["file"]["name"] . "<br>";
                echo "Type: " . $_FILES["file"]["type"] . "<br>";
                echo "Size: " . ($_FILES["file"]["size"] / 1024) . " kB<br>";
                echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<br>";
           if (file_exists("upload/" . $_FILES["file"]["name"])){
             echo $_FILES["file"]["name"] . " already exists. ";
           }   else{
                 move_uploaded_file($_FILES["file"]["tmp_name"],
                 "upload/" . $_FILES["file"]["name"]);
                 echo "Stored in: " . "upload/" . $_FILES["file"]["name"];
               }
           }
   }  else  {
        echo "Invalid file";
}
?>

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2016-12-17
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2017-08-28
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多