簡體   English   中英

PHP 后變量問題

[英]PHP Post Variable Problem

PHP 已經有一段時間了,所以請原諒我的無知。 我有這個 web 頁面:

<?php
mysql_connect ("localhost", "user", "pass");
mysql_select_db ("expiration");

if (isset ($_REQUEST['new_expire']) && $_REQUEST['new_expire'] != "") {
    $insert_query = "INSERT INTO files (path, expires) VALUES ('";
    $insert_query .= $_REQUEST['new_path'];
    $insert_query .= "', '";
    $insert_query .= $_REQUEST['new_expire'];
    $insert_query .= "');";
    mysql_query ($insert_query);
}
?>
<html>
<head></head>
<body>
    <?php echo print_r $_REQUEST; ?>
    <form action="index.php" method="POST">
        <p>Add New Expiration</p>
        <table>
            <tr>
                <td align="right">
                    Select File:
                </td>
                <td>
                    <select id="new_path">
                        <?php $options = buildOptions (); echo $options; ?>
                    </select>
                </td>
            </tr>
            <tr>
                <td align="right">
                    MySQL Expire Time:
                </td>
                <td>
                    <input type="text" id="new_expire" />
                </td>
            </tr>
            <tr>
                <td></td>
                <td>
                    <input type="submit" value="Save" />
                </td>
            </tr>
        </table>
    </form>
</body>
</html>
<?php
mysql_close ();
?>

當我加載頁面時, print_r的結果是一個空數組。 當我提交表單時,它仍然是空的。 我在數據庫中沒有新記錄。 有任何想法嗎?

將您擁有id的所有地點更改為name ,例如:

<input type="text" id="new_expire" /> --> <input type="text" name="new_expire" />

_REQUEST_POST_GET )僅來自具有name的輸入元素

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM