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

Размер файла: 1.1Kb
<?php
include "tools.php";
include "head.php";
   	     	if (!empty($_GET['number']))
   	     	{
   	     		$qw = mysql_query("SELECT * FROM `pages` where `type`='page' && `idpage`='".intval($_GET['number'])."';");
   	     		if (mysql_affected_rows()>0)
   	     		{
   	     			$qw1=mysql_fetch_array($qw);
   	     			echo "<div class='contur_rek'>
                         <div class='header_rek'><div style='text-align:center; color=#c00000;'><b>".$qw1['text']."</b></div></div></div>";
					$str=mysql_query("SELECT * FROM `pages` where `type`='str' && `idpage`='".intval($_GET['number'])."' order by time;");
					while($str1=mysql_fetch_array($str))
					{
						echo "<div class='contur'>
	                         <div class='header'>".$str1['text']."</div></div>";

					}
   	     		}
   	     		else
   	     		{
   	     			echo "<div>Заправшиваемая Вами страница не найдена!</div>";
   	     		}
   	     	}
   	     	echo "<div class='contur'>
	<div class='header'><a href='./'>На главную</a></div></div>";
require ("foot.php");
?>