Hello, I am Spanish and have created the search of habbos, if someone it wants to modify that to remove rights
Translator uses:$
PHP Code:
<div class="habblet-container ">
<div class="habblet-container ">
<div class="cbb clearfix red ">
<div class="box-tabs-container clearfix">
<h2>Buscar Habbos </h2>
<ul class="box-tabs">
</ul>
</div>
<div id="div" >
<div id="div2" class="recommendedrooms-lite-habblet-list-container">
<ul class="habblet-list">
<div id="groups-habblet-info" class="habblet-content-info">
<form id="form1" name="form1" method="post" action="">
<label>
Escribe el nombre del usuario:<br />
<input name="cual" type="text" id="cual" />
<label>
<input name="ok" type="submit" id="ok" value="Buscar" />
<br />
</label>
<?
/* Agradecimientos a Solotrades */
// Creado por Potenchi
if(isset($_POST['ok'])){
if($_POST['cual'] == NULL){
echo "Dejaste el campo vacio";
} else {
$sqll = mysql_query("SELECT * FROM users WHERE name LIKE '".$_POST['cual']."%'") or die(mysql_error());
if(mysql_num_rows($sqll)==0){
echo "<b><font color=#FF0000>No existe ese habbo</font></b>";
} else {
while($ar = mysql_fetch_array($sqll)){
?>
<br />
<table width="409" border="0" cellspacing="0" cellpadding="0">
<tr>
<th width="33" scope="col"><img src="http://www.habbo.co.uk/habbo-imaging/avatarimage?figure=<?=$ar['figure']; ?>&direction=2&head_direction=2&gesture=sml&size=s" width="33" height="56" /></th>
<th width="102" scope="col"><?=$ar['name']; ?></th>
<th width="274" scope="col">Ultima visita:<br /><?=$ar['lastvisit']; ?></th>
</tr>
</table><? } } } } ?>
</form>
</div>
</ul>
</div>
</div>
</div>
</div>
</div>
Saludos, Potenchi.