Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 26, 2019 01:29
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/c61f9e6f3dd4fc621579e5c7278207ac to your computer and use it in GitHub Desktop.
Save parzibyte/c61f9e6f3dd4fc621579e5c7278207ac to your computer and use it in GitHub Desktop.
<?php
$mascotas = ["Maggie", "Guayaba", "Meca", "Panqué"];
?>
<style>
/**
Tomado de https://parzibyte.me/blog/2018/10/16/tabla-html-bordes-css/
*/
table {
border-collapse: collapse;
}
table,
th,
td {
border: 1px solid black;
}
th,
td {
padding: 5px;
}
</style>
<h1>Mis mascotas</h1>
<table>
<thead>
<tr>
<th>Nombre</th>
</tr>
</thead>
<tbody>
<?php foreach ($mascotas as $mascota) {?>
<tr>
<td><?php echo $mascota; ?></td>
</tr>
<?php }?>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment