mirror of
https://github.com/Xkeeper0/jul.git
synced 2025-05-19 00:30:21 -07:00
13 lines
256 B
PHP
13 lines
256 B
PHP
<?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'");
|
|
|
|
|