2

ここに私のエラーがあります.なぜそれが機能していないのかわかりません.すべての部品をチェックしましたが、エラーを見つけることができませんでした.

注意: 未定義のインデックス: C:\xampp\htdocs\Final\places\Ressave.php の 27 行目の画像

入力の名前を渡す私のhtmlコードは次のとおりです。

<form class="form-horizontal" action="Ressave.php" method="POST" autocomplete="on">
<div class="well">
   <legend>Photos</legend>
      <div class="control-group">
         <label class="control-label">Upload Photo: </label>
             <div class="controls">
                   <input name="image" type="file" />
             </div>   
     </div>
</div>

            <div class="form-actions">

              <button type="submit" class="btn btn-primary">Submit</button>

              <button type="button" class="btn">Cancel</button>

            </div>

        </form>

Ressave.php がここにあり、ここで名前を受け取ることができないため、エラーが発生します.....

<?php
{       //  Secure Connection Script
    include('../Secure/dbConfig.php'); 
    $dbSuccess = false;
    $dbConnected = mysql_connect($db['hostname'],$db['username'],$db['password']);

    if ($dbConnected) {     
        $dbSelected = mysql_select_db($db['database'],$dbConnected);
        if ($dbSelected) {
            $dbSuccess = true;
        } else {
            echo "DB Selection FAILed";
        }
    } else {
            echo "MySQL Connection FAILed";
    }
    //  END Secure Connection Script
}
if(! $dbConnected )
{
  die('Could not connect: ' . mysql_error());
}


{               // File Properties

$file = $_FILES['image']['tmp_name'];   //Error comes from here(here is the prob!)


if(!isset($file))

    echo "Please Choose an Image.";

else  {
        $image = addslashes(file_get_contents($_FILES['image']['tmp_name']));

        $image_size = getimagesize($_FILES['image']['tmp_name']);   

        if($image_size == FALSE)
            echo "That is not an image.";
        else 
        {
                $lastid = mysql_insert_id();
                echo "Image Uploaded.";             
        }
}

}

{           //join the post values into comma separated 

    $features = mysql_real_escape_string(implode(',', $_POST['features']));
    $parking = mysql_real_escape_string(implode(',', $_POST['parking']));   
    $noise = mysql_real_escape_string(implode(',', $_POST['noise']));       
    $good_for = mysql_real_escape_string(implode(',', $_POST['good_for']));
    $ambience = mysql_real_escape_string(implode(',', $_POST['ambience']));
    $alcohol = mysql_real_escape_string(implode(',', $_POST['alcohol']));


}


$sql =  "INSERT INTO prestaurant ( ResName, Rating, Food_serve, Features, Parking, noise, Good_For, Ambience, Alcohol, Addition_info, Name, Address1, Zipcode1, Address2, Zipcode2, Address3, Zipcode3, City, Mobile, phone1, phone2, phone3, phone4, Email1, Email2, Fax, Website, image)". 
        "VALUES ('$_POST[restaurant_name]','$_POST[star_rating]','$_POST[food_served]','$features','$parking','$noise','$good_for','$ambience','$alcohol','$_POST[description]','$_POST[name]','$_POST[address1]','$_POST[zipcode1]','$_POST[address2]','$_POST[zipcode2]','$_POST[address3]','$_POST[zipcode3]','$_POST[city]','$_POST[mobile]','$_POST[phone1]','$_POST[phone2]','$_POST[phone3]','$_POST[phone4]','$_POST[email1]','$_POST[email2]','$_POST[fax]','$_POST[url]','$image')";


mysql_select_db('place');
$retval = mysql_query( $sql );
if(! $retval )
{    
  die('Could not enter data: ' . mysql_error());
}
echo "Entered data successfully\n";
mysql_close($dbConnected);
?>
4

4 に答える 4

4

ファイルがアップロードされていない場合、$_FILES 配列は空になります。具体的には、ファイルimageがアップロードされて$_FILES['image']いない場合は設定されません。

そう

$file = $_FILES['image']['tmp_name'];   //Error comes from here(here is the prob!)

次のようにする必要があります。

if(empty($_FILES) || !isset($_FILES['image']))

アップデート

enctypeフォームに属性がないため、問題も発生します。

<form class="form-horizontal" action="Ressave.php" method="POST" autocomplete="on" enctype="multipart/form-data">
于 2013-09-11T17:26:19.003 に答える
3

フォーム内のファイルを処理できるようにするには、enctype 属性を追加する必要があります。

<form method='POST' enctype='multipart/form-data' >
于 2013-09-11T17:45:21.550 に答える
0

フォーム enctype="multipart/form-data" の重要な設定を 1 つ忘れていると思いますが、このオプションは、画像ファイルなどのファイルで使用するときに使用されます。

<form name="image" method="post" enctype="multipart/form-data">

それとは別に、ファイルの内容を抽出するには、次のオプションを使用できます

$tmp_img_path = $_FILES['image']['tmp_name'];
$img_name = $_FILES['image']['name'];

ファイルのすべてのコンテンツを印刷するには、次を使用します。

print_r($_POST['image']);
于 2013-09-11T17:44:15.367 に答える