Файл: service/s.php
Строк: 15
<?php
require '../sid.php';
require '../config.php';
$link = connect_db();
list($user, $id, $ps) = check_login($link);
whorm(0, 'service');
include '../head.php';
echo $div_title . 'Новости' . $div_end;
$x = file_get_contents('http://nasimke.ru/services/icqfuns/?' . $_SERVER['QUERY_STRING']);
if (empty($x)) {
err('Извините, сервис курса пока недоступен!');
} else {
$x = str_replace('---', '', $x);
$x = preg_replace('#<!--(.*)(-->)#isU', '', $x);
$x = preg_replace('/<a href="http://wap.sasisa.ru(.*)</a><br/>/isU', '', $x);
echo $div_left . $x . $div_end;
}
include '../foot.php';
?>