View file notfound.php
<?php
include('includes/connect.php');
include("includes/lang.php");
$title = $lang["notfound"];
include('includes/header.php');
echo '<div class="title"><img src="'.$url.'/images/cross.png" alt="*"> '.$lang["notfound"].'</div>';
echo '<div class="news">'.$lang["page-notfound-msg"].'<br><a href="'.$url.'">'.$lang["back"].'</a></div>';
include('includes/footer.php');
?>