good friend I will not know anything about codes but I will try and there is also another little problem when I go the route book she says that the route did not pass.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title><?php echo $page_title; ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="<?php echo SITE_URL?>/lib/skins/surrealv1/css/style.css" />
<link rel="stylesheet" type="text/css" href="<?php echo SITE_URL?>/lib/skins/surrealv1/css/blue.css" />
<link rel="stylesheet" type="text/css" href="<?php echo SITE_URL?>/lib/skins/surrealv1/css/ddsmoothmenu.css" />
<!--[if IE 6]><link rel="stylesheet" type="text/css" href="<?php echo SITE_URL?>/lib/skins/surrealv1/css/ie6.css" /><![endif]-->
<!--[if IE 7]><link rel="stylesheet" type="text/css" href="<?php echo SITE_URL?>/lib/skins/surrealv1/css/ie7.css" /><![endif]-->
<?php echo $page_htmlhead; ?>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
<script type="text/javascript" src="<?php echo SITE_URL?>/lib/skins/surrealv1/js/pikachoose.js"></script>
<script type="text/javascript" src="<?php echo SITE_URL?>/lib/skins/surrealv1/js/ddsmoothmenu.js">
/***********************************************
* Smooth Navigational Menu- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/
</script>
<script type="text/javascript">
<!--
ddsmoothmenu.init({
mainmenuid: "navigation", //menu DIV id
orientation: 'h', //Horizontal or vertical menu: Set to "h" or "v"
classname: 'menu', //class added to menu's outer DIV
//customtheme: ["#1c5a80", "#18374a"],
contentsource: "markup" //"markup" or ["container_id", "path_to_menu_file"]
})
$(document).ready(function(){
$("#pikame").PikaChoose();
});
-->
</script>
</head>
<body>
<?php echo $page_htmlreq; ?>
<div id="titleheader_bg"><a href="/index.php" title="Home"><img src="<?php echo SITE_URL?>/lib/skins/surrealv1/images/titleheader_title.gif" /></a></div>
<div id="gradient"><div class="gradient_highlight"></div></div>
<div id="container">
<div id="navigation" class="menu">
<ul>
<?php Template::Show('core_navigation.tpl'); ?>
<li><a href="#">Sample Dropdown</a>
<ul>
<li><a href="#">Remove This</a></li>
<li><a href="#">Or Use It</a></li>
<li><a href="#">In layout.tpl</a></li>
</ul>
</li>
</ul>
</div>
<!-- Slider -->
<div id="display">
<ul id="pikame">
<li><img src="<?php echo SITE_URL?>/lib/skins/surrealv1/images/display/thumbs/slide1.jpg" ref="<?php echo SITE_URL?>/lib/skins/surrealv1/images/display/slide1.jpg" alt="Slide1" /><span>Boeing 767<br /><small>Landing At Saint Martin</small></span></li>
<li><img src="<?php echo SITE_URL?>/lib/skins/surrealv1/images/display/thumbs/slide2.jpg" ref="<?php echo SITE_URL?>/lib/skins/surrealv1/images/display/slide2.jpg" alt="Slide2" /><span>Cessna 182<br /><small>In the Mountains Somewhere</small></span></li>
</ul>
</div>
<!-- End Slider -->
<div id="content_container">
<div id="content">
<?php echo $page_content; ?>
</div>
<div id="sidebar">
<div class="sidebar_section">
<div class="sidebar_title">
<h4>Latest PiReps</h4>
</div>
<?php MainController::Run('PIREPS', 'RecentFrontPage', 5); ?>
</div>
<div class="sidebar_section">
<div class="sidebar_title">
<h4>Latest Pilots</h4>
<small>Please help us welcome them</small>
</div>
<?php MainController::Run('Pilots', 'RecentFrontPage', 5); ?>
</div>
<div class="sidebar_section" style="border-bottom: 0;">
<div class="sidebar_title">
<?php
if(Auth::LoggedIn() == false)
{
?>
<form name="loginform" action="<?php echo url('/login'); ?>" method="post">
Sign-in with your pilot id or email, or <a href="<?php echo url('/registration'); ?>">register</a><br />
<input type="text" name="email" value="" onClick="this.value=''" />
<input type="password" name="password" value="" />
<input type="hidden" name="remember" value="on" />
<input type="hidden" name="redir" value="index.php/profile" />
<input type="hidden" name="action" value="login" />
<input type="submit" name="submit" value="Log In" />
</form>
<?php
}
else
{
$pilotid = PilotData::GetPilotCode(Auth::$userinfo->code, Auth::$userinfo->pilotid);
?>
<img align="left" height="50px" width="50px" style="margin-right: 10px;"
src="<?php echo PilotData::getPilotAvatar($pilotid);?>" />
<strong>Pilot ID: </strong> <?php echo $pilotid ; ?>
<strong>Rank: </strong><?php echo Auth::$userinfo->rank;?><br />
<strong>Total Flights: </strong><?php echo Auth::$userinfo->totalflights?>, <strong>Total Hours: </strong><?php echo Auth::$userinfo->totalhours;?>
<br />
<a href="<?php echo url('/pireps/new');?>">File a New PIREP</a> |
<a href="<?php echo url('/schedules/bids');?>">View My Bids</a> |
<a href="<?php echo url('/profile/');?>">View Pilot Center</a>
<?php
}
?>
</div>
</div>
</div>
<div class="spacer"></div>
</div>
</div>
<div id="footer">
copyright © 2007 - <?php echo date('Y') ?> - <?php echo SITE_NAME; ?> | <a href="http://www.phpvms.net" target="_blank">powered by phpVMS</a> | Template repackaged by <a href="http://www.la92.com" target="_blank">LA92</a> |Â <a href="#top">go to top</a>
</div>
</body>
</html>
good very thanks for the help ...