File size: 697B
<?php
include "ads.php";
echo '<div class="menu" align="center">
<a href="'.$url.'" title="home">'.$lang["home"].'</a> - ';
if($userid) {
echo '<a href="'.$url.'/user">'.$lang["mycp"].'</a>';
if($rights>1) {
echo ' - <a href="'.$url.'/admin">SysPanel</a>';
}
echo ' - <a href="'.$url.'/logout.php">'.$lang["logout"].'</a>';
} else {
echo '<a href="'.$url.'/login.php">'.$lang["login"].'</a> - <a href="'.$url.'/registration.php">'.$lang["reg"].'</a>';
}
echo ' - <a href="'.$url.'/about.php">'.$lang["about"].'</a> - <a href="'.$url.'/terms.php">'.$lang["terms"].'</a>
<br>© '.date("Y").', <a href="'.$url.'">'.$sitename.'</a>
</div>
</div>
</body></html>';
?>