Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 29, 2020 23:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/bda49d763af4985fedced09a80df722e to your computer and use it in GitHub Desktop.
Save parzibyte/bda49d763af4985fedced09a80df722e to your computer and use it in GitHub Desktop.
<table class="table">
<thead>
<tr>
<th>ID</th>
<th>Nombre</th>
<th>Descripción</th>
<th>Editar</th>
<th>Eliminar</th>
</tr>
</thead>
<tbody>
<?php
foreach ($videojuegos as $videojuego) { ?>
<tr>
<td><?php echo $videojuego["id"] ?></td>
<td><?php echo $videojuego["nombre"] ?></td>
<td><?php echo $videojuego["descripcion"] ?></td>
<td>
<a href="editar.php?id=<?php echo $videojuego["id"] ?>">Editar</a>
</td>
<td>
<a href="eliminar.php?id=<?php echo $videojuego["id"] ?>">Eliminar</a>
</td>
</tr>
<?php } ?>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment