-
Notifications
You must be signed in to change notification settings - Fork 4
/
finnspiller.php
executable file
·36 lines (36 loc) · 973 Bytes
/
finnspiller.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
include("core.php");
startpage("Spillersøk");
?>
<h1>Finn spiller</h1>
<br> <center><form method="post"><input type="text" name="soktekst" value="" maxlength="15"><input type="submit" class="finn" name="finn" value="Finn spiller"></form></center>
<?php
if(isset($_POST['finn'])){
$soktekst = $db->escape($_POST['soktekst']);
if(strlen($soktekst) <= 1){
echo '
<p class="feil"> Du må søke med mer enn �t tegn!</p>
';
}
else{
$getdb1 = $db->query("SELECT * FROM `users` WHERE `user` LIKE '%$soktekst%' LIMIT 50");
$numrow = $db->num_rows();
if($numrow == 0){
print "<center><font color='#ff0000'>Spillere med <b>$soktekst</b> ble ikke funnet.</font></center>";
}
else{
while($row = mysqli_fetch_assoc($getdb1)){
$nick = $row['user'];
$id = $row['id'];
if($row['health'] <= 0){
echo '<center>'.'.</center>';
}
print '<center>'.user($row['id']).'</center>';
}
}
}
}
?>
<?php
endpage();
?>