First (re-)commit

This commit is contained in:
Xkeeper
2015-08-08 22:45:34 -07:00
commit b22c0a1df8
1064 changed files with 18752 additions and 0 deletions

12
ext/hydra.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
header("Content-type: text/plain");
$userid = intval($_GET['u']);
if (!$userid) die("No userid specified.");
chdir("..");
require 'lib/function.php';
print $sql -> resultq("SELECT `posts` FROM `users` WHERE `id` = '$userid'");