看板 PHP 關於我們 聯絡資訊
現在很多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)
taiwancat:先把http protocol讀一遍吧 阿賴 09/25 09:37
taiwancat:可以用socket 實作POST method... 09/25 09:38
taiwancat:不然試試看hidden form& submit 09/25 09:39