0

几个月前,我开始编写我的第一个动态页面......从零基础的前端和后端学习一切。

这里和那里有一些颠簸,所以这是另外一个。

这是一个房地产页面,人们可以在其中添加列表和图片。我在这里那里阅读了一些关于数据库内部图片问题的著名主题。我刚决定使用 DB,因为我需要从某个地方开始。

我使用本教程开始。几个小时后,瞧,我能够在真实服务器中插入图片。很高兴。

但随之而来的问题。图片需要附加到用户名(或电子邮件)。当您尝试插入内容时,该站点具有受用户名保护的页面。

这是将图片插入数据库的主要文件。注意,我在代码中添加了用户名,但没有插入用户名,只是图片。我需要知道谁在插入什么。

您可能会跳过一个附带问题:图片需要附加到地址。当用户选择图片并按下上传按钮时,我可以有一个带有地址的输入字段,同一个按钮将同时执行两个功能吗?(如果我有两个按钮,用户可能不会两者都做。这样,我们同时得到图片和地址,后面是用户名)。我会知道如何有两个按钮,两个查询。

非常感谢您的帮助。我真的需要它。

  $query = sprintf(
        "insert into images (filename, mime_type, file_size, file_data, username)
            values ('%s', '%s', %d, '%s','%s')",
        mysql_real_escape_string($image['name']),
        mysql_real_escape_string($info['mime']),
        $image['size'],
        mysql_real_escape_string(
            file_get_contents($image['tmp_name'])), 
    mysql_real_escape_string(
            file_get_contents($_SESSION['user'])
        )
    );

这是完整的代码。

<?php
//error_reporting(E_ALL);
//ini_set("display_errors", 1);
require("common.php");   
 if(empty($_SESSION['user']))      
    {
       header("Location: ../index.php"); 
        die("Redirecting to .../index.php"); 
    }

?>

上面代码的第一部分只是检查用户是否已经登录。然后是代码。

<?php
    require_once('globalsConfigPic1.php');

    function assertValidUpload($code)
    {
        if ($code == UPLOAD_ERR_OK) {
            return;
        }

        switch ($code) {
            case UPLOAD_ERR_INI_SIZE:
            case UPLOAD_ERR_FORM_SIZE:
                $msg = 'Image is too large';
                break;

            case UPLOAD_ERR_PARTIAL:
                $msg = 'Image was only partially uploaded';
                break;

            case UPLOAD_ERR_NO_FILE:
                $msg = 'No image was uploaded';
                break;

            case UPLOAD_ERR_NO_TMP_DIR:
                $msg = 'Upload folder not found';
                break;

            case UPLOAD_ERR_CANT_WRITE:
                $msg = 'Unable to write uploaded file';
                break;

            case UPLOAD_ERR_EXTENSION:
                $msg = 'Upload failed due to extension';
                break;

            default:
                $msg = 'Unknown error';
        }

        throw new Exception($msg);
    }

    $errors = array();

    try {
        if (!array_key_exists('image', $_FILES)) {
            throw new Exception('Image not found in uploaded data');
        }

        $image = $_FILES['image'];

        // ensure the file was successfully uploaded
        assertValidUpload($image['error']);

        if (!is_uploaded_file($image['tmp_name'])) {
            throw new Exception('File is not an uploaded file');
        }

        $info = getImageSize($image['tmp_name']);

        if (!$info) {
            throw new Exception('File is not an image');
        }
    }
    catch (Exception $ex) {
        $errors[] = $ex->getMessage();
    }

    if (count($errors) == 0) {
        // no errors, so insert the image

         $query = sprintf(
        "insert into images (filename, mime_type, file_size, file_data, username)
            values ('%s', '%s', %d, '%s','%s')",
        mysql_real_escape_string($image['name']),
        mysql_real_escape_string($info['mime']),
        $image['size'],
        mysql_real_escape_string(
            file_get_contents($image['tmp_name'])),

        mysql_real_escape_string(
            file_get_contents($_SESSION['user'])
        )
    );

        mysql_query($query, $db);

        $id = (int) mysql_insert_id($db);

        // finally, redirect the user to view the new image
        header('Location: view.php?id=' . $id);
        exit;
    }
?>
<html>
    <head>
        <title>Error</title>
    </head>
    <body>
        <div>
            <p>
                The following errors occurred:
            </p>

            <ul>
                <?php foreach ($errors as $error) { ?>
                    <li>
                        <?php echo htmlSpecialChars($error) ?>
                    </li>
                <?php } ?>
            </ul>

            <p>
                <a href="upload.php">Try again</a>
            </p>
        </div>
    </body>
</html>
4

1 回答 1

-1

是的!!这是第一部分的部分解决方案:

$query = sprintf(
            "insert into images (filename, mime_type, file_size, file_data, username)
                values ('%s', '%s', %d, '%s','%s')",
            mysql_real_escape_string($image['name']),
            mysql_real_escape_string($info['mime']),
            $image['size'],
            mysql_real_escape_string(
                file_get_contents($image['tmp_name'])),

            mysql_real_escape_string  (
                 htmlentities($_SESSION['user']['username'], ENT_QUOTES, 'UTF-8')
            )
        );

现在正在处理要与地址连接的图片。

于 2013-08-31T02:37:54.200 回答