在PHP中的foreach表中添加一个编辑按钮



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>';

相关内容

  • 没有找到相关文章

最新更新