編輯atitle.php. ... <form method="post" action="api.php?do=tii"> ... <input type="file" name="file"> <input type="submit"> </form> <?php break; // 新增標題 ... ... <看更多>
php submit 傳值 在 Re: [請益] 如何不用表單把資料POST出去- 看板PHP - PTT數位 ... 的推薦與評價
轉址,也是各種方式都可以, : HTML、PHP(header… ... 不好意思看到原本在談form就忘了跟各位講我本來也是用ajax 但不知為何值傳不到取值那頁後來全用form才成功所以 ... ... <看更多>
php submit 傳值 在 通過POST 傳遞陣列| 他山教程,只選擇最優質的自學材料 的推薦與評價
... <?php print_r($_POST);?> </pre> <form method="post"> <input type="hidden" name="foo" value="bar"/> <button type="submit">Submit</button> ... ... <看更多>
php submit 傳值 在 [請益] 同一個php頁面的傳值 的推薦與評價
我想要把 record_num,在每次使用者輸入一個「數字」存在 first的input裡面時,
按下submit,可以紀錄到 cookie 裡面,並且把 record_num + 1,
然後會再 load 一次同一個頁面,並且把所有輸入過的input依序列出來,
再讓使用者繼續輸入下一個數值。可以重複以上動作。
下面是我的code,一直try不出來,麻煩幫我看錯在哪裡 ><,謝謝。
<?php
if($record_num){
$a_record = $first;
setcookie("c_record[$record_num]", $a_record);
$record_num++;
}else{
$record_num = 1;
}
?>
<html>
<head>
...
</head>
<body>
<?php
$first = $_POST['first'];
echo '<form action=try.php method="post">';
$a_record = $first;
$HTTP_COOKIE_VARS['c_record'][$record_num-1] = $a_record;
for($i=0;$i<$record_num;$i++){
echo $HTTP_COOKIE_VARS['c_record'][$i];
}
echo '<p>record_num</p>'.$record_num.'<br />';
echo '<input type="text" name="first" size="12" maxlength="10" />';
echo '<input type="hidden" name="record_num" value=$record_num />';
echo '<input type="submit" value="確定" />';
echo '</form>';
?>
<a href=try.php?record_num=<?echo $record_num?>>確定</a>
</body>
</html>
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 218.167.233.118
... <看更多>