让人们将图片上传到帖子

时间:2013-10-21 13:26:14

标签: php

我有一个论坛,您可以发布标题和说明。所以我现在得到了这个数据库:

enter image description here

现在我希望能够在我的帖子中添加图片。我有一个文件上传页面,我从: http://bytes.com/topic/php/insights/740327-uploading-files-into-mysql-database-using-php 我可以使用哪个。但它不会让我看到图像。只是图像的信息和下载它的选项。它看起来像这样: enter image description here

发布帖子后,我希望能够在看到帖子时看到图片。我认为必须有不同的方法来做到这一点,对吗?

修改 我的帖子php代码:

<?php
session_start();
$mysqli = new mysqli("localhost", "root", "usbw", "accounts");
$mysqli2 = new mysqli("localhost", "root", "usbw", "forum");
$alles_goed=false;


if(isset($_SESSION['username'])){
$usernamecheck = $mysqli->query("SELECT * from account_information where username ='". $_SESSION['username'] ."'");

if (isset($_POST['title'])) {
    $alles_goed=true;
    $description=$mysqli2->real_escape_string($_POST['description']);
    $title=$mysqli2->real_escape_string($_POST['title']);
    $usernameinsert=$mysqli2->real_escape_string($_SESSION['username']);

    if($usernamecheck->num_rows==0){
        $alles_goed=false;
    }   
    if($alles_goed==true){
        echo'<a href="questionprogramming.php">Back to programming</a>';
        $a=date("Y-m-d H:i:s");
        $resultaat = $mysqli2->query("INSERT INTO questions (title, description, username, date_made) VALUES ('" . $title . "','" . $description . "', '".$usernameinsert."','".$a."')");

        }

}
if($alles_goed==false){
echo'<table>';
echo
<<<EOT
  <form action="newquestion.php" method="post">
  <tr><th><td><input type="text" size="108%" name="title"></td></tr></th>
  <tr><th><td> <textarea name="description"  rows="20" cols="80" ></textarea></td></tr></th>
  <tr><th><td><input name="submit" type="submit" value="submit"></td></tr></th>
  </form>

EOT;
echo'</table>';
}
}
?>

我知道sql注入......

1 个答案:

答案 0 :(得分:0)

Loko你不应该因为性能而将图像放在数据库中。 您将数据库的路径存储在数据库中。

看一下上传你的图片。

http://www.phphulp.nl/php/script/php-algemeen/image-upload-script/1484/imageuploadscript/1086/

祝你好运。