我有一個問題要求與GET/POST相關。通過GET獲取參數並通過POST提交(PHP)
我想做一個簡單的博客文章和他們的意見。
從每個職位我都主頁上的話,我想在一個新的頁面,使保存post's指數有評論的控制添加註釋的形式。
我通過GET在新頁面中獲取此索引值,但是當我通過POST提交表單時,我失去了索引的引用。
我讀這是不可能同時使用這兩種方法,我想知道我可以保持一個參數從主網頁,並將其與價值的新形式,其餘存儲。
非常感謝,
BR
http://localhost/simple_blog_new_comment.php?postIndex=xx
<form action='simple_blog_new_comment.php' method='POST'>
\t \t Commentary:<br>
\t \t <textarea onfocus='clearContent(this)' cols='30' rows='5' name="txt_comment">Enter the text here...</textarea><br>
\t \t Author: <input type='text' name='txt_comment_author'><br>
\t \t <input type='submit' name='btn_comment_submit'><br><br>
\t </form>
這裏索引引用究竟是什麼? –
你想添加一個隱藏的輸入字段到評論表單,其中包含帖子ID('」>' )。 – arkascha