pls如何正确编写,我需要为我的表的每一行都有一个编辑图标。
echo "<td>"<a href='editservice?edit=.$docrow->getId().'>Edit</a>"</td>";
您没有正确用变量缝制字符串。尝试这个,
echo "<td><a href='editservice?edit=".$docrow->getId()."'>Edit</a></td>";
尝试以下:
<td><a href="editservice?edit=<?php echo $docrow->getId()?>">Edit</a></td>
echo '<td><a href="editservice?edit='.$docrow->getId().'">Edit</a></td>';