recipe_list.php
来自「RESIN 3.2 最新源码」· PHP 代码 · 共 26 行
PHP
26 行
<?php require_once "view_inc.php" ?><table border="1"> <tr> <th>Recipe</th> <th>Category</th> <th>Date</th> </tr> <? foreach ($recipes as $recipe) { ?> <tr> <td> <a href="recipe.php?id=<?= $recipe->id ?>"><?= q($recipe->title) ?></a> <a href="recipe.php?action=delete&id=<?= $recipe->id ?>">(delete)</a> </td> <td> <a href="recipe.php?action=list&category_id=<?= $category->id ?>"><?= q($recipe->category->name) ?></a> </td> <td> <?= q($recipe->date) ?> </td> </tr><? } ?></table>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?