View file viewzapis.php

File size: 380B
<? include "head.php"; ?>
<? include "config.php"; ?>
<div class="title">Меню:</div>
<div class="main">

<?
$id = $_GET['id'];
$cat = mysql_query("SELECT * FROM blogs WHERE id='$id'") or die ("MySQL Error");
$view_cat = mysql_fetch_array($cat);
echo "<b>$view_cat[name]</b><br>$view_cat[zapis]";
?>



<br><a href="index.php">Главная</a>

<? include "foot.php"; ?>