如何通过hyperlink-url提交参数并在php中检索它们?

时间:2013-06-12 13:39:47

标签: php html mysql href

在一个while循环中携带值,每个值都从SQL表中提取,我需要携带em,因为我正在制作从特定客户端购买的项目列表。我正在使用此行作为href url:

    echo "<table width=1200 style align=left>";
while($row3 = mysqli_fetch_array($rs3)){
$space = array("");
$text=$row3['description'];
$dash="_";
$url = preg_replace("![^a-z0-9]+!i", "_", $text);
$url= "".$url.".php";

echo "<tr><td colspan=2 style align=center><span class=font>" . $row3['relid'] . "</span></td><td width=132 style align=center><span class=font>" . $row3['invoiceid'] . "</span></td><td width=400 style align=center <span class=font><a href=$url>" . $row3['description'] . "</span></A></td><td width=132 style align=right><span class=font>" . $row3['amount'] . "</span></td><td width=132 style align=center><span class=font>Pendiente</span></td><td width=132 style align=left><span class=font>" . $row3['duedate'] . "</span></td></tr>";
}
mysqli_close($con3);
echo "</table>";
echo"<table width=1200>";
echo "  <tr class=font>
<td width=1200 height=22 colspan=7  background=border-green-horizontal.png>&nbsp;</td>

“;

我正在从数据库中提取描述I中提取的URL,但我需要从特定行中携带订单ID,客户端ID等。 每个变量都需要携带到一个表单,用户将填写一些关于客户购买的产品的字段(医学测试结果),我需要将这些变量标记为“完成”,这样它就不会再显示在列表。

1 个答案:

答案 0 :(得分:0)

修复这些语法错误,如果仍然破坏则报告。

<td width=400 style align=center <span class=font><a href=$url>" . $row3['description'] . "</span></a></td>

- &GT;

"<td width=400 style align='center'><span class='font'><a href='$url'>" . $row3['description'] . "</span></a></td>"

编辑:

你的意思是如何将一个var附加到一个url,所以它可以在被调用的页面上重新获得? 您可以通过echo "<a href='{$url}?id={$var}'>将var附加到网址。

在被叫页面上,您可以按$_GET['id']

阅读