4

頭が回らないという奇妙な問題があります。

次のフォームがあり、送信をクリックすると、フォーム内のすべてのフィールドを GET または POST しません。isnew=true action=object &submit=Start の 2 つのフィールドのみがピックアップされています。

<form name="newOffer" action="/auth/dashboard" method="post">
                                <td><?php echo form_hidden('isnew', 'true');?><?php echo form_hidden('action', 'object');?><input type="text" id="newOfferItem" placeholder="Offer Free Item" class="input-xlarge"></td>
                                <td><input type="text" id="newOfferText" placeholder="Offer Description" class="input-xlarge" rel="tooltip" title="Description How to get free item"></td>
                                <td><input type="text" id="newOfferFreeOn" placeholder="Stamps for free item" class="input-xlarge" rel="tooltip" title="Number only. Ex. 5"></td>
                                <td><span class="label label-danger">Inactive</span></td>
                                <td><?php $attributes = 'class = "btn btn-success"'; echo form_submit('submit', 'Start', $attributes);?></td>
                             </form>
4

2 に答える 2

4

ID 属性の代わりに、または ID 属性に加えて、各 INPUT 要素に NAME 属性を追加する必要があります。

例えば

<form name="newOffer" action="/auth/dashboard" method="post">
    <td>
        <?php echo form_hidden('isnew', 'true');?>
        <?php echo form_hidden('action', 'object');?>
        <input type="text" NAME="newOfferItem" id="newOfferItem" placeholder="Offer Free Item" class="input-xlarge">
    </td>
    <td>
        <input type="text" NAME="newOfferText" id="newOfferText" placeholder="Offer Description" class="input-xlarge" rel="tooltip" title="Description How to get free item">
    </td>
    <td>
        <input type="text" NAME="newOfferFreeOn" id="newOfferFreeOn" placeholder="Stamps for free item" class="input-xlarge" rel="tooltip" title="Number only. Ex. 5">
    </td>
    <td>
        <span class="label label-danger">Inactive</span>
    </td>
    <td>
        <?php $attributes = 'class = "btn btn-success"'; echo form_submit('submit', 'Start', $attributes);?>
    </td>
</form>
于 2013-04-25T16:43:10.677 に答える
0

要素には必ずname属性を追加してください。 ここにあなたのための例があります..input

index.html

<form method="POST" action="process.php">
    <input type="text" name="username" value="">
    <input type="password" name="password" value="">
    <input type="submit" name="submit" value="login">
</form>

プロセス.php

<?php

// checking if submit is pressed

if (isset($_POST['submit'])) {

    // assigning posted values

    $username = $_POST['username'];
    $password = $_POST['password'];

    // testing

    echo $username . "<br>";
    echo $password;
}

?>
于 2013-04-25T16:48:00.200 に答える