我知道asp可以繼承表單值並將其插入另一個鏈接頁面。有沒有辦法用PHP PDO腳本來做到這一點。例如,我在我的模擬網站上爲每個新成員添加了一個新表格條目。對於每條記錄,將創建一個名爲「成員簡檔」的表單按鈕,該按鈕具有該同一行中成員的值。當我點擊按鈕時,我希望會員名稱攜帶到新頁面並鏈接到該phpmyadmin表並顯示該會員的所有日期。我希望我解釋說得對。這裏是我的代碼攜帶表單值到另一個使用PHP的網頁
$dsn = 'mysql:host=localhost;dbname=averyit_net';
$db_username = "root";
$db_password = "password";
$db = new PDO ($dsn, $db_username, $db_password);
$tablemaker = $db->query("SELECT `cust_profile`.`CustomerName`,
`cust_profile`.`CustomerType`, `cust_profile`.`ContractHours` FROM `cust_profile` ORDER
BY `CustomerName`");
while ($rows = $tablemaker->fetch(PDO::FETCH_ASSOC)) {
?>
<table width="75%" border="1" cellspacing="0" align="center">
<th width="15%" height="0%" bgcolor="#819FF7"> </th>
<th width="35%" height="0%" bgcolor="#819FF7"> </th>
<th width="30%" height="0%" bgcolor="#819FF7"> </th>
<th width="20%" height="0%" bgcolor="#819FF7"> </th>
<tr>
<form method="post" action="edit_cust.php" >
<td align="center">
<span style="font-size: 9pt"><font size="1" face="Verdana">
<input TYPE="submit" NAME="dothis0" value="Customer Profile">
</font></span><font face="Verdana"><font size="2">
</font>
<input type="hidden" name="custID" value="<?php echo $rows['CustomerName']; ?>">
</font>
</td>
</form>
來使用是的,我瞭解如何使用標籤... – user2193312 2013-03-26 03:17:17
將方法=「發佈」更改爲「獲取」 – 2013-03-26 03:22:34
但隨後打開的新頁面如何知道將該信息放在哪裏? – user2193312 2013-03-26 03:24:03