Просмотр файла index.php

Размер файла: 1.34Kb
<?php
#############################################
#-----------КАТАЛОГ WAP САЙТОВ--------------#
#  Автор: ELectRoniK                        #
#  ICQ: 368108260                           #
#############################################
# ПЛАТНОЕ РАСПРОСТРАНЕНИЕ СКРИПТА ЗАПРЕЩЕНО #
#############################################

session_name("sid");     session_start();
include'ini.php';
$q = mysql_query('SELECT * FROM `kat_data`;');
while($s= mysql_fetch_assoc($q)){$data[$s['n']] = $s['p'];}
$in=trim(htmlspecialchars($_GET['in'], ENT_QUOTES, 'utf-8'));
$mod=trim(htmlspecialchars($_GET['mod'], ENT_QUOTES, 'utf-8'));
if(!$mod)$mod='index';
if(!$in or $in=='index')$in='indexpage';
echo'<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ru">
<head>
<meta http-equiv="Content-type" content="text/html; charset=UTF-8" /><title>'.$data['site'].' | '.$data['title'].'</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>';
echo'<img src="logo.gif">';
include''.$in.'.php';
echo'<div class="menu1"><a href="http://'.$data['site'].'">'.$data['site'].'</a> '.(date("Y")).'</div>
</body></html>';
?>