Top Players for qPS

Автор sanik559, 17 марта 2011, 21:07:13

« назад - далее »

0 Пользователи и 1 гость просматривают эту тему.

sanik559

Привет всем, помогите переделать код под портал(adk, sm, tiny...) на смф wallbash
этот код вывода для статистики psyhostats в блоке, но для нюка(
<?php
if(!defined("NUKE_FILE"))
{
Header("Location: ../index.php");
die();
}

global
$prefix, $dbi;

$path_to_stats = "http://localhost/ps23";
$users_count = 10;

if (
substr($path_to_stats, -1, 1) != "/") $path_to_stats .= "/";

if (
$file = fopen($path_to_stats . "ssi.php?p=top&num=" . $users_count, "r"))
{
while (!feof($file)) $content .= fgets($file);
$content = str_replace('href="/', 'href="' . $path_to_stats, $content);
}

else
{
$content = "Can't connect with the stats";
}

?>