好吧,對於我目前爲止的所有編碼,我在同一個腳本上使用了GETs和$ _POST。
例如:profile.php將顯示用戶所做的所有帖子,並且在他們的每篇帖子下,他們都可以編輯帖子。我一直在使用它的方式是通過$ _GETs。所以..
//this is the link users click to edit their post
echo '<td><a href="editad.php?posting_id='.$row3['posting_id'].' ">Edit</a>';
//on the editad.php
$posting_id=$_GET['posting_id'];
if (isset($posting_id)){
//show all the forms, sqls to do the editing
}
else{ //if the $_GET hasn't been set
echo "You have not specified which ad to edit. Please go back";
}
如何通過POST來做到這一點? 謝謝:)
疑難雜症的區別!謝謝。我試圖看看是否可以使用POST作爲「GET」方式,並且猜測你不能。猜猜我必須堅持GET。 – ggfan 2010-04-15 04:10:47
@ggfan:經驗法則是:如果要以任何方式編輯文件或數據庫(刪除,修改,創建),請使用POST。否則使用GET。 – waiwai933 2010-04-15 04:12:02