Hata sayfası

Ana Sayfadaki kodlarım
<?php include("header.php"); ?>
<div id="middle">
<?php
$sorgu = mysql_query("SELECT * FROM projeler");
while($gelen = mysql_fetch_array($sorgu)){
echo "<div class='homepage-post'>
<a href='icerik.php?proje=$gelen[id]' title=''><img src='$gelen[resim]' width='210' height='140'/>
<span class='featured'>Proje Detayları</span>
</a>
</div>
";
}
?>
</div>
<?php include("footer.php"); ?>İçerik sayfası<?php include("header.php"); ?>
<div id="middle">
<?php
$sorgu = mysql_query("SELECT * FROM projeler WHERE id='$_POST[id]'");
while($gelen = mysql_fetch_array($sorgu)){
echo "
<h1>'$gelen[projeadi]'</h1>
<span>'$gelen[aciklama]'</span>
<span>'$gelen[resim]'</span>
";
}
?>
</div>
<?php include("footer.php"); ?>