0

我得出的结论是,我的表单正在发送空数据,有人可以告诉我我是否正确?为什么会发生这种情况!请帮忙,这是我的代码...

<html>
<head>
<meta charset="UTF-8">
  <title>Untitled Document</title>
</head>
<body>
<div id="slider_upload">

<h1>Slider principal</h1>
    <div class="forma">

    <form action="sliderPrincipal.php" method="post" enctype="multipart/form-data">
        <p><label for="encabezado">Encabezado</label>
        <input type="text" id="encabezado" name="encabezado" /></p><br>
        <input type="hidden" name="MAX_FILE_SIZE" value="1048576" />
        <p><label for="fileupload">File to upload</label>
        <input type="file" id="fileupload" name="fileupload" /></p><br>
        <p><label for="articulo">Articulo</label>
        <textarea id="articulo" name="articulo" rows="26" style="width: 100%;" >Escribir aqui</textarea></p><br>
         <button type="submit" name="submit" value"send">Upload File</button>
    </form><br><br>

</div>
</div>

<div class="message">
    <?php 



$file_dir = "../uploaded";

if (isset($_POST['encabezado'])){
$encabezado = mysql_real_escape_string($_POST['encabezado']);
$articulo = mysql_real_escape_string($_POST['articulo']);
}


foreach($_FILES as $file_name => $file_array){
   //echo "path: ".$file_array['tmp_name']."<br />\n";
   //echo "name: ".$file_array['name']."<br/>\n";
   //echo "type: ".$file_array['type']."<br/>\n";
   //echo "size: ".$file_array['size']."<br/><br/>\n";
   //echo "encabezado ".$encabezado;

        if(is_uploaded_file($file_array['tmp_name'])){
        move_uploaded_file($file_array['tmp_name'], "$file_dir/".$file_array['name']) or die ("Your image couldnt be uploaded <br>");   
        $newpath = addslashes("uploaded/".$file_array['name']);
        include "connect.php"; 
        $addfile = "INSERT INTO slider (encabezado, image, articulo) VALUES ('$encabezado','$newpath', '$articulo')"; 
        $result = mysql_query($addfile);
        if ( $result === FALSE ) {
            echo "your post could not be uploaded but we already got your image in our files ";
        } else{
            echo '<p style="padding: 20px;"><h1>Your post was successfully uploaded <h2></p><br><br>';

        }


        mysql_close();  

    } else "No file found";


 }

 ?>
</div>  
</div>
</body>
</html>
4

1 回答 1

-1
$file_dir = "../uploaded";
if($_REQUEST['submit']) {
    $encabezado = mysql_real_escape_string($_POST['encabezado']);
    $articulo = mysql_real_escape_string($_POST['articulo']);
    foreach($_FILES as $file_name => $file_array){
        if(is_uploaded_file($file_array['tmp_name'])){
            move_uploaded_file($file_array['tmp_name'], "$file_dir/".$file_array['name']) or die ("Your image couldnt be uploaded <br>");   
            $newpath = addslashes("uploaded/".$file_array['name']);
            include "connect.php"; 
            $addfile = "INSERT INTO slider (`encabezado`, `image`, `articulo`) VALUES ('$encabezado','$newpath', '$articulo')"; 
            $result = mysql_query($addfile);
            if ( $result === FALSE ) {
                echo "your post could not be uploaded but we already got your image in our files ";
            } else{
                echo '<p style="padding: 20px;"><h1>Your post was successfully uploaded <h2></p><br><br>';

            }
        mysql_close();  

        } else "No file found";


 }
}

试试上面的代码。

注意:未测试。

于 2014-08-14T05:19:18.143 回答