我的php脚本中包含以下代码。但是看不到问题出在哪里。我试图将带有id的记录ID链接到另一个php页面。 在表格显示中,没有链接的是可见的。我需要链接的不是。
echo '<td align="right"><a href = "./history.php?cust_id='. $cust_id. '" <?php echo $cust_id;?></a><td>'; // this one does not work
echo '<td align="right">'.$customerName.'</td>'; // no problem with this
我为此停了下来。错误在哪里?
答案 0 :(得分:2)
我再次写了它并进行了测试。您不需要另一个php标签,如果您使用echo,您已经在php中了:
echo '<td align = right><a href = "./history.php?cust_id='. $cust_id. '">'.$cust_id.'</a><td>';