Utilizo un template HTML con una tabla para mostrar los datos recuperados de una base de datos.
Me gustaría mostrarlos de 10 en 10. ¿Algún método recomendable y sencillo?
Using html4strict Syntax Highlighting
- <HTML>
- <HEAD>
- <title> My users</title>
- </HEAD>
- <p ALIGN = "center" ><a href="?mode=new">Create new user</a>
- <a href="?mode=upd">Update my account</a></p>
- <br>
- <h2 >List of users created by [%user%]</h2>
- <body>
- <FORM METHOD=POST ACTION="app.pl">
- <input type="hidden" name="mode" value="mod">
- [%mensaje%]
- <table border=2 width="60%" ALIGN = "center" cellspacing = 0 cellpadding = 5>
- <tr bgcolor = 'DC DC DC'>
- <th> Username</th>
- <th> Email</th>
- <th> Enable</th>
- <th> Creation date</th>
- <th> Phone</th>
- <th> Select</th>
- [% FOREACH variable IN users %]
- <tr>
- <td>[%variable.usuario%]</td>
- <td>[%variable.correo%]</td>
- <td>[%variable.activado%]</td>
- <td>[%variable.fechaCreacion%]</td>
- <td>[%variable.tlfno%]</td>
- <td><INPUT type=radio value="[%variable.usuario%]" name="box"></td>
- </tr>
- [%END%]
- </tr></table><br><br>
- <p align="center"><INPUT type=submit value="Select" name="Seleccionar"></INPUT></p>
- </FORM>
- </body>
Coloreado en 0.006 segundos, usando GeSHi 1.0.8.4