index1.php - sem sa includuju ostatne subory
Kód:
<?php
session_start();
session_register('meno');
session_register('prihlasenie');
session_register('admin');
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1250">
<title>Zone.tym.sk - Vaše miesto na webe</title>
<link rel=stylesheet href=css/style.css type=text/css>
</head>
<?php
if ($_SESSION['prihlasenie']==TRUE)
{
include_once("my/sql.php");
$num=mysql_query("select * from obrazky");
$ue=mysql_num_rows($num);
$uz=mysql_query("select * from uzivatelia");
$uz1=mysql_num_rows($uz);
echo "
<body>
<div id=top>
</div>
<div id=img>
<div id=img_text>
<b>".$uz1."</b> užívateľov zatiaľ pridalo <b>".$ue."</b> obrázkov.
</div>
</div>
<div id=telo>
<div id=obsah>";
$strana=$_GET['strana'];
if (empty($strana))
include("s/uvod.php");
else
if(is_file("s/".$strana.".php"))
include("s/".$strana.".php");
else
include("s/uvod.php");
echo "
</div>
<div id=menu_o>
<div id=menu>
<div style='font-size:10px; margin-bottom:30px; text-align:center; width:200px'>Ste prihlásený/á ako<br>
<b>".$_SESSION['meno']."</b><br><br>";
$udaje=mysql_query("select * from spravy where pre='".$_SESSION['meno']."' and precitane='0'");
$s=mysql_num_rows($udaje);
if ($s>0)
echo "Máte neprečítané správy<br><a href=index1.php?strana=spravy>Prečítať</a><br><br>";
echo "
</div>
<a href=index1.php?strana=mobrazky>Moje obrázky</a>
<a href=index1.php?strana=obrazky>Obrázky</a>
<a href=index1.php?strana=pridat>Pridať obrázok</a>
<a href=index1.php?strana=profil>Profil</a>
<a href=index1.php?strana=spravy>Správy</a>
<a href=index1.php?strana=nastavenia>Nastavenia</a>
<a href=index1.php?strana=forum>Fórum</a>
<a href=index1.php?strana=uzivatelia>Užívatelia</a>
<a href=index1.php>Úvod</a>
<a href=index.php?strana=odhlasenie>Odhlásiť sa</a>
</div>
<div id=forum>
<b>Najnovšie príspevky vo fóre</b><br>";
$op=mysql_query("select * from forum_prispevky order by timestamp DESC limit 10");
while ($op1=mysql_fetch_array($op))
{
$tem=mysql_query("select * from temy where id='".$op1['tema']."'");
$tem1=mysql_fetch_array($tem);
echo "<a href=index1.php?strana=tema&id=".$op1['tema'].">".$tem1['nazov']."</a><br>";
}
mysql_close();
echo "
</div>
</div>
<div class=clear>
</div>
</div>
<div id=spod>
Design + Code <a href=mailto:technodrome1@azet.sk>TECHNODROME</a>
</div>";
}
else
echo "<div align=center style='height:100px;'>Nieste prihlásený</div>";
?>
</body>
</html>
a subor ktory vykonava mazacky atd.
Kód:
<?php
if ($_SESSION['admin']==TRUE)
{
$id=$_GET['id'];
if ($_GET['a']=="forum")
{
mysql_query("delete from forum_prispevky where forum=$id");
mysql_query("delete from temy where forum=$id");
mysql_query("delete from forum where id=$id");
echo "<a href=index1.php?strana=forum>Pokračovať</a>";
header("Location: http://www.zone.tym.sk/index1.php?strana=forum");
}
if ($_GET['a']=="tema")
{
$b=mysql_query("select * from temy where id=$id");
$b1=mysql_fetch_array($b);
mysql_query("delete from forum_prispevky where tema=$id");
mysql_query("delete from temy where id=$id");
echo "<a href=index1.php?strana=forum>Pokračovať</a>";
header("Location: http://www.zone.tym.sk/index1.php?strana=forum1&id=".$b1['forum']."");
}
if ($_GET['a']=="prispevok")
{
$b=mysql_query("select * from forum_prispevky where id=$id");
$b1=mysql_fetch_array($b);
mysql_query("delete from forum_prispevky where id=$id");
echo "<a href=index1.php?strana=tema&id=".$b1['tema'].">Pokračovať</a>";
}
if ($_GET['a']=="uzivatel")
{
mysql_query("delete from uzivatelia where id=$id");
header("Location: http://www.zone.tym.sk/index1.php?strana=uzivatelia");
}
}
else
echo "Niesi admin"
?>