md5-database
Code (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
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
<?php
if ($_SERVER['REQUEST_METHOD'] == "POST") {
if($_POST['search']){
$zoek=file_get_contents("http://www.xfreaks.nl/md5/api.php?search=".$_POST['search']."",FALSE,NULL, "0", "100");
if($zoek == "to short"){
$text .= "De code: <b>".$_POST['search']."</b> is te kort.<br>";
}elseif($zoek == "not found"){
$text .= "Voor <b>".$_POST['search']."</b> is geen vertaling gevonden<br>";
}else{
$text .= "De vertaling van <b>".$_POST['search']."</b> is: <b>".$zoek."</b><br>";
}
}
if($_POST['add']){
$zoek=file_get_contents("http://www.xfreaks.nl/md5/api.php?add=".$_POST['add']."",FALSE,NULL, "0", "100");
$text .= "De vertaling van <b>".$_POST['add']."</b> is: <b>".$zoek."</b><br>";
}
}
$aantal=file_get_contents("http://www.xfreaks.nl/md5/api.php?extra=adds",FALSE,NULL, "0", "100");
echo $text;
echo '<form action="" method="post">
Zoek een md5 code: <input type="text" name="search" />
<input type="submit" value="Zoeken" /><br><br>
Vertaal naar MD5: <input type="text" name="add" />
<input type="submit" value="Vertaal" />
</form>';
echo "Er zijn al ".$aantal." vertalingen sinds 14 oktober 2009.<br>";
echo "De codes komen uit het database van <a href="http://www.xfreaks.nl/md5/">Xfreaks.nl</a>";
?>
if ($_SERVER['REQUEST_METHOD'] == "POST") {
if($_POST['search']){
$zoek=file_get_contents("http://www.xfreaks.nl/md5/api.php?search=".$_POST['search']."",FALSE,NULL, "0", "100");
if($zoek == "to short"){
$text .= "De code: <b>".$_POST['search']."</b> is te kort.<br>";
}elseif($zoek == "not found"){
$text .= "Voor <b>".$_POST['search']."</b> is geen vertaling gevonden<br>";
}else{
$text .= "De vertaling van <b>".$_POST['search']."</b> is: <b>".$zoek."</b><br>";
}
}
if($_POST['add']){
$zoek=file_get_contents("http://www.xfreaks.nl/md5/api.php?add=".$_POST['add']."",FALSE,NULL, "0", "100");
$text .= "De vertaling van <b>".$_POST['add']."</b> is: <b>".$zoek."</b><br>";
}
}
$aantal=file_get_contents("http://www.xfreaks.nl/md5/api.php?extra=adds",FALSE,NULL, "0", "100");
echo $text;
echo '<form action="" method="post">
Zoek een md5 code: <input type="text" name="search" />
<input type="submit" value="Zoeken" /><br><br>
Vertaal naar MD5: <input type="text" name="add" />
<input type="submit" value="Vertaal" />
</form>';
echo "Er zijn al ".$aantal." vertalingen sinds 14 oktober 2009.<br>";
echo "De codes komen uit het database van <a href="http://www.xfreaks.nl/md5/">Xfreaks.nl</a>";
?>