我在协会中写成法典。 该网络和我是新的。 我有两种阵列,一种是姓名,另一种是女婴。
我想制作一个表格,在一栏和两栏中注明姓名,取决于另一栏中的标语(与这一具体名称链接,删除与这一具体名称链接)。
PHP 我这样做:
<table>
<tr>
<td>Title</td>
<td>Actions</td>
</tr>
<?php
$names = Array("a", "b", "c");
$ids = Array("1", "2", "3");
for($i = 0; $i < 3; $i++):
?>
<tr>
<td>
<?php echo $names[$i]; ?>
</td>
<td>
<a href="edit.php?id=<?php echo $ids[$i]; ?>">Edit</a>
<a href="delete.php?id=<?php echo $ids[$i]; ?>">Delete</a>
</td>
</tr>
<?php endforeach; ?>
</table>
我的理解是,你可以在伙伴关系中写出非常相似的内容。 NET,但我必须使用雷达绿色。 非常感谢帮助!
EDIT: If it is important, I get the data as an XML, and I chose to parse it as 2 arrays. If it is easier, I can parse it differently.