我有代码:
<table>
<?php foreach (ListFiles('clients/'.$entry) as $key=>$file){?>
<tr>
<td><?php echo $file;?></td>
<td><img src="pdf.png" height="40" width="40" alt="strategic report"></img></td>
</tr>
</table>
.. 生成表中的项目列表。我在表格的不同部分的右侧添加了一个按钮。
问题是:当用户单击图像时,即 onclick,我将如何从所选的相应值/项目中获取值?
我正在使用 PHP。
干杯