作者drlai (蘇打)
看板PHP
標題[請益] 如何傳送$_POST的資料?
時間Sun Sep 25 07:53:58 2005
現在很多PHP都改成讀取$_POST['']這樣方式得資料
不能像以前一樣使用xx.php?aa=xx&bb=xx的方式來傳送
那有辦法送出$_POST的資訊嗎?
例如網頁是這樣
------index.php-----
<html>
<head></head>
<body>
<form method=post active=act.php>
<input type=text name=aa>
<input type=text name=bb>
</form>
</body>
</html>
-------EOF-----------
那我該怎麼把aa,bb兩個數值的資料不透過index.php傳送到act.php
之前聽說可以使用fsocket..不過我不太會用@@
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 220.135.8.145
※ 編輯: drlai 來自: 220.135.8.145 (09/25 07:54)
1F:推 taiwancat:先把http protocol讀一遍吧 阿賴 09/25 09:37
2F:→ taiwancat:可以用socket 實作POST method... 09/25 09:38
3F:→ taiwancat:不然試試看hidden form& submit 09/25 09:39