VaginaMuncher
Chilling with me bitch Fiona
- Mar 17, 2013
- 447
- 58
Okay guys/girls....
But as no one ever helps on habbo area and most are bigger noobs then me. I posted here...
Basically I'm making a live time user search so if I search a members username like the first few lets such as...
Ry it could come up with Ryan Rymax Rynor etc if you get me....
I've already coded the search system so they can search eachother's pages a mate helped. Now I need help making it live...
I need help doing something related to this;
I currently have this...
Code won't be usable as you don't have the sqli systems variables..
You must be registered for see links
- This is related to my website and to a retro theme I'm making too.But as no one ever helps on habbo area and most are bigger noobs then me. I posted here...
Basically I'm making a live time user search so if I search a members username like the first few lets such as...
Ry it could come up with Ryan Rymax Rynor etc if you get me....
I've already coded the search system so they can search eachother's pages a mate helped. Now I need help making it live...
I need help doing something related to this;
You must be registered for see links
I currently have this...
Code won't be usable as you don't have the sqli systems variables..
Code:
<center> <form method="post">
<input type="text" name="user" style="border-radius:3px; outline:3px grey;">
<input type="submit">
</form></center>
<script>
$( "#Idktbh" ).load( "/ #Idktbh" );
</script>
<?php
if(isset($_POST['user']))
{
if(!empty($_POST['user']))
{
$q = mysql_query("SELECT * FROM users WHERE upper(username) LIKE'%" . filter($_POST['user']) . "%' LIMIT 15");
if(mysql_num_rows($q) != 0)
{
echo "<div style=\"overflow-y: scroll;overflow-x: hidden; max-height:75px;\">";
while($r = mysql_fetch_assoc($q))
{
echo "
<div style='width: 64px; height: 75px; margin-top:-18px; margin-left:-10px; float: left; background: url(http://www.habbo.nl/habbo-imaging/avatarimage?figure={$r['look']}&gesture=sml&size=m&img_format=gif);'></div>
<p style=\"margin-left:60px;\">
<br/>
<a href=\"{$_CONFIG['hotel']['url']}/profile/{$r['username']}\"><strong>{$r['username']}</strong></a>
<br><font color='grey'>{$r['motto']}</font>
</p><br/>";
}
echo "</div>";
}else{
echo "<center><font color=\"#999\">No users found.<br/></font></center>";
}
}else{
echo "Please enter a username";
}
}
<script>
$( "#Idktbh" ).load( "{url}/index.php?url=load&username=" + $("#IDOFINPUT" ).val());
</script>
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
?>