我在locallhost中有一个表,在我的表中有一个项目ID,现在我想通过单击EDIT将ID相关行发送到另一页。感激
我认为很难在下面编写程序的一部分
... ....
$response["travel"]=array();
while ($row = mysql_fetch_array($sql)) {
// Print out the contents of the entry
echo '<tr>';
echo '<td class="text-center">' . $i . '</td>';
echo '<td class="text-center">' . $row['companyname'] . '</td>';
echo '<td class="text-center">' . $row['cod'] . '</td>';
echo '<td class="text-center">' . $row['bigan'] . '</td>';
echo '<td class="text-center">' . $row['stop'] . '</td>';
echo '<td class="text-center">' . $row['date'] . '</td>';
echo '<td class="text-center">' . $row['time'] . '</td>';
echo '<td class="text-center">' . $row['price'] . '</td>';
echo '<td class="text-center">' .'<a href="edituser.php?id=<?php echo $id?>">EDIT</a>' .'</td>';
$i++;
....... .....
答案 0 :(得分:0)
您不需要在字符串中使用<?php
,而是在返回HTML模式时使用它。您应该像连接其他地方一样将变量连接起来
echo '<td class="text-center">' .'<a href="edituser.php?id=' . $id . '">ویرایش</a>' .'</td>';