上传图片的问题

时间:2012-05-21 23:11:41

标签: php upload

这样我必须建立它将上传图片到服务器,但它出现错误,使得无法继续或说什么? HMM的

activate.php

<input type="file" name="file" />

activate_updater.php

<?php include ("include/database/db.php");
ini_set('display_errors',1);
error_reporting(E_ALL | E_STRICT);
session_start();

        $pb = null;
        include("class.upload.php");
        $handle = new Upload($_FILES['profilbillede']);

        if($handle->uploaded){
                //lidt mere store billeder
                $handle->image_resize = true;
                $handle->image_ratio_y = true;
                $handle->image_x = 220;
                $handle->Process("profil/store");
                    //til profil billede lign..
                    $handle->image_resize = true;
                    $handle->image_ratio_crop = true;
                    $handle->image_y = 75;
                    $handle->image_x = 75;
                    $handle->Process("profil");                
            $pb = $handle->file_dst_name;

                echo 'Billedet: '.$pb.'<br>';
                echo "Dit billede blev upload<br>";
        }else{
                $pb = 'bruger_intet.png';
            }

    if($stmt = $mysqli->prepare('UPDATE `brugere` SET `rank`=2, `katogori`=?, `djnavn`=?, `profilbillede`=?, `profiltekst`=?, `facebook`=?, `pris`=?, `booking`=?, `mobil`=? WHERE `code`=?'))
    {

        $stmt->bind_param('iiiiiiiis', $katogori, $djnavn, $profilbillede, $profiltekst, $facebook, $pris, $booking, $mobil, $g_code);
        //fra input ting ting..
        $katogori = $_POST["kategori"];
        $djnavn = $_POST["djnavn"];
        $profilbillede = $_POST["file"];
        $profiltekst = $_POST["profiltekst"];
        $facebook = $_POST["facebook"];
        $pris = $_POST["pris"];
        $booking = $_POST["booking"];
        $mobil = $_POST["mobil"];
        $g_code = $_SESSION["code"];

        $stmt->execute();
        $stmt->close();

        header("Location: http://.....dk/logind/");

    }
    else
    {
        echo 'Der opstod en fejl i erklæringen: ' . $mysqli->error;
    }
?>

所以这里出现错误?

注意:未定义的索引:第37行/home/jesperbo/public_html/,,,.dk/activate_updater.php中的文件

警告:无法修改标头信息 - 已经发送的标头(/home/jesperbo/public_html/,,,.dk/activate_updater.php:24中的输出)/home/jesperbo/public_html/,,.dk/第48行激活_updater.php

出现问题

$profilbillede = $_POST["file"];

在这里

echo 'Billedet: '.$pb.'<br>';

在这里

header("Location: http://....dk/logind/");

2 个答案:

答案 0 :(得分:0)

与错误消息一样,输出文本后无法发送标题。

header('....')

必须在之前任何echo命令。

答案 1 :(得分:0)

在已经发送标头后,您无法发送标头。修改代码,使标题在任何输出之前,包括空格