DoctorGoodman
New Member
- Apr 30, 2020
- 2
- 0
Hi, I would like to know if you could help me with this
This is my index code:
I would greatly appreciate your help
pd. Sorry for my english.
You must be registered for see images attach
You must be registered for see images attach
This is my index code:
Code:
<div class="header">Ultimos Registrador en iPlay</div>
<div class="content">
</div>
<?php
$belcr_get = $dbh->prepare("SELECT username, look, account_created, online FROM users ORDER BY id DESC LIMIT 6");
$belcr_get->execute();
while ($belcr_row = $belcr_get->fetch())
{
?>
<li class="list-group-item" style="border: 0;padding: 0;background-color: #ff7e00;border-radius: 4px;">
<p></p><div style="width: 57px; height: 62px; margin-top:-22px; margin-left:-10px; float: left; background: url(https://habbo.nl/habbo-imaging/avatarimage?figure=<?= $belcr_row['look'];?>&headonly=1);"></div>
<b><?= $belcr_row['username'];?></b> <br>
<b><?= $belcr_row[''];?> </b>
</li>
<?php }?>
</div>
I would greatly appreciate your help
pd. Sorry for my english.