我知道asp可以继承表单值并将其插入另一个链接页面。有没有办法用 PHP PDO 脚本做到这一点。例如,我在模拟网站上为每个新成员创建了一个新表条目。对于每条记录,都会创建一个名为“成员配置文件”的表单按钮,该按钮具有同一行中成员的值。当我单击按钮时,我希望将成员名称带到新页面并链接到该 phpmyadmin 表并显示该成员的所有日期。我希望我解释得对。这是我的代码
$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>