0

我知道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>
4

2 回答 2

0
change method="post" to method="get"

on your second form you will be posted a url like this (ie):

script.php?your_variable=lorem&second_variable=ipsum

<input type="text" value="<?=($_GET['your_variable']) ? htmlentities($_GET['your_variable']) : ''?>" name="field_name">

<input type="text" value="<?=($_GET['second_variable']) ? htmlentities($_GET['second_variable']) : ''?>" name="field_name">
于 2013-03-26T03:27:57.227 回答
0

在你改变你的形式method="get"

提交表格会将您重定向到您的action="edit_cust.php"

这将产生一个包含你CustomerName这样的参数的url

*www.localhost/website/edit_cust.php?name=Me*

然后您可以使用 $_GET[] 全局变量在 edit_cust.php 上获取或使用该数据

// set it to variable..
$CustomerName = $_GET['name'];
//note: your $_GET[] parameter should equal to what is in your url to gets its value...

那么您的客户名称就可以使用变量来使用了$customerName

于 2013-03-26T03:37:37.563 回答