0

私はテーブルフォームを持っています:

$html.='<div class="grid-round">
            <form method="post action="">
                <table class="grid-table">
                    <tr>
                        <th><input type="checkbox" ></th>
                        <th>name</th>
                        <th>type</th>
                        <th>date</th>
                        <th>Stat</th>
                    </tr>
                     ...
                </table>
                <button>save</button>
            </form>
</div>';

それが配置されているページはアドレスにあります:

www.example.com/admin?cid=53&user_id=10

しかし、ボタンを押すと、次のようにリダイレクトされます。

www.example.com/admin

私は入れましaction=" '.$SERVER[ 'REQUEST_URI' ].' "たが、それも助けにはなりませんでした。誰かが何をすべきか、またはどこに問題があるかをアドバイスできますか?

4

2 に答える 2

2

の後に引用符を追加method="post:

$html.='<div class="grid-round">
            <form method="post" action="">
于 2013-09-05T14:01:52.267 に答える