Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $query = mysql_query("SELECT * FROM pedidos ORDER BY id DESC LIMIT 25");
- while($row = mysql_fetch_array($query)):
- ?>
- <div class="pedido_normal">[<?=$row['fecha'];?>] <?=$row['nombre'];?> </div><div class="mas_info" id="item<?=$row['id'];?>"><a href="javascript:void(0);" onclick="showInfo('<?=$row['id'];?>')">Más info</a></div>
- <?php endwhile; ?>
Advertisement
Add Comment
Please, Sign In to add comment