Jump to content

RoylesVA

Members
  • Posts

    57
  • Joined

  • Last visited

Everything posted by RoylesVA

  1. ok will try it wen i get in thanks
  2. line 109 is the last line and i will look in to the {
  3. Parse error: syntax error, unexpected $end in /var/www/vhosts/royles.eu/httpdocs/lib/skins/royles_1.0/profile_main.tpl on line 109
  4. RoylesVA

    pilot center

    Hey i been working on my pilot center useing all the right codes but i get an error on the last line can anyone have a look and let me know whats missing Thanks Nathan <div id="mainbox"> <h3>Pilot Center</h3> <div class="indent"> <td><p><strong>Welcome back <?php echo $pilot->firstname . ' ' . $pilot->lastname; ?>!</strong></p> </tr> </table> <table width="152" height="68" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="188" height="68"><?php PopUpNews::PopUpNewsList(3); ?> </tr> </table> <table width="589" height="45" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <th width="192" scope="col"><img src="<?php echo PilotData::getPilotAvatar($pilotcode); ?>" /> <th width="192" scope="col"><img src="<?php echo $pilot->rankimage ?>" /> <th width="197" scope="col"><?php MainController::Run('Mail', 'checkmail'); ?> <p><a href="<?php echo url('/Mail'); ?>">Royles AirMail</a> </tr> </table> <table width="290" height="149" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td><li><strong>Your Pilot ID: </strong> <?php echo $pilotcode; ?></li> <li><strong>Your Rank: </strong><?php echo $pilot->rank;?></li> <?php if($report) { ?> <li><strong>Latest Flight: </strong><a href="<?php echo url('pireps/view/'.$report->pirepid); ?>"> <?php echo $report->code . $report->flightnum; ?></a> </li> <?php } ?> <li><strong>Total Flights: </strong><?php echo $pilot->totalflights?></li> <li><strong>Total Hours: </strong><?php echo $pilot->totalhours; ?></li> <li><strong>Total Transfer Hours: </strong><?php echo $pilot->transferhours?></li> <li><strong>Total Money: </strong><?php echo FinanceData::formatMoney((floatval($pilot->totalpay) + floatval($pilot->payadjust))) ?></li> <?php if($nextrank) { ?> </tr> </table> <table width="707" height="94" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="256" height="94" align="left"><strong>Profile Options</strong> <ul> <li><a href="<?php echo url('/profile/editprofile'); ?>">Edit My Profile, Email and Avatar</a></li> <li><a href="<?php echo url('/profile/changepassword'); ?>">Change my Password</a></li> <li><a href="<?php echo url('/profile/badge'); ?>">View my Badge</a></li> <li><a href="<?php echo url('/profile/stats'); ?>">My Stats</a></li> <li><a href="<?php echo url('/downloads'); ?>">View Downloads</a></li> </ul> </p> <td width="242" align="center" valign="top"><strong> Flight Operations</strong> <ul> <li><a href="<?php echo url('/pireps/mine');?>">View my PIREPs</a></li> <li><a href="<?php echo url('/pireps/routesmap');?>">View a map of all my flights</a></li> <li><a href="<?php echo url('/pireps/filepirep');?>">File a Pilot Report</a></li> <li><a href="<?php echo url('/schedules/view');?>">View Flight Schedules</a></li> <li><a href="<?php echo url('/schedules/bids');?>">View my flight bids</a></li> <li><a href="<?php echo url('/finances');?>">View VA Finances</a></li> </ul> <td width="209" valign="top"><strong>My Awards</strong><br /> <?php if(!$allawards) { echo 'No awards yet'; } else { /* To show the image: <img src="<?php echo $award->image?>" alt="<?php echo $award->descrip?>" /> */ ?> <ul> <?php foreach($allawards as $award){ ?> <li><?php echo $award->name ?></li> <?php } ?> </ul> <?php } ?> </tr> </table> <table width="300" border="0" cellspacing="0" cellpadding="0"> <tr> </tr> </table> <table width="516" height="55" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td> <strong>ACARS Config</strong> <ul> <li><a href="<?php echo actionurl('/acars/fspaxconfig');?>">Download FSPax Config</a></li> <li><a href="<?php echo actionurl('/acars/xacarsconfig');?>">Download XAcars Config</a></li> <li><a href="<?php echo actionurl('/fsfk/vaconfig_template');?>">VA-Template.txt</a> </tr> </table> </td> </tr></table> </div> </div> <br />
  5. aaa got it sorted just on last question how can i make it aline as they are not stright
  6. Thanks but still not working i changed the code to this <p><?php echo $title?></p> <?php if(!$allpilots) { echo 'There are no pilots!'; return; } ?> <table border="1"> <tr> <th>Pilot ID</th> <th>Name</th> <th>Hours</th> <th>Flights</th> <th>Rank</th> </tr> <tr> <td width="14%" nowrap><a href="<?php echo url('/profile/view/'.$pilot->pilotid);?>"> <?php echo PilotData::GetPilotCode($pilot->code, $pilot->pilotid)?></a></td> <td><?php echo $pilot->firstname.' '.$pilot->lastname?> </td> <td><center><?php echo Util::AddTime($pilot->totalhours, $pilot->transferhours); ?></center></td> <td><center><?php echo $pilot->totalflights?></center></td> <td><center><img src="http://www.royles.eu/lib/images/ranks/<?php echo $pilot->rankimage?>" alt="<?php echo $pilot->rank;?>" /></center></td> </table>
  7. RoylesVA

    pilot center

    Hi, i been trying to make my own pilot center but it looks like this i know there is something missing but cant work it out Here is the code i am using what am i missing ? <p><?php echo $title?></p> <?php if(!$allpilots) { echo 'There are no pilots!'; return; } ?> <table border="1"> <tr> <th>Pilot ID</th> <th>Name</th> <th>Hours</th> <th>Flights</th> <th>Rank</th> </tr> <tr> <td width="14%" nowrap><a href="<?php echo url('/profile/view/'.$pilot->pilotid);?>"> <?php echo PilotData::GetPilotCode($pilot->code, $pilot->pilotid)?></a></td> <td><?php echo $pilot->firstname.' '.$pilot->lastname?> </td> <td><center><?php echo Util::AddTime($pilot->totalhours, $pilot->transferhours); ?></center></td> <td><center><?php echo $pilot->totalflights?></center></td> <td><center><img src="<?php echo $pilot->rankimage?>" alt="<?php echo $pilot->rank;?>" /></center></td> </table> Any help would be great Nathan
  8. Hi am having a problem with the flight bidding add on, When i Select all it works fine and shows me the routes but if i put EG Departure airport as EGLL it says no flights found ? i try with lots off dirrent airlports and the same happens with no airports found i checked the schedule and there are defo flights from the airport Any help would be great
  9. Royles Events Our First event is The European Tour starting on the 25th Auguest Royles VA will soon be doing the European Tour witch will have 2 Group with 10 flights in each Group This will start on the 25th August till the 15th September all route will be release 1 day before the events start the route numbers will start from ROA6000 To ROA6010 for group 1 and 6011 to 6021 for group 2 If you need any more info please contact the staff ! More events coming soon !!
  10. i am on phpVMS Version v2.1.934-153-g822a0b9 i will have a look:)
  11. Royles VA Now open

  12. with the logo am working on a new one but not sure wen i will have it finished but some pointers on this would be great and will probe get rid of the a380 anyways Thanks Nathan
  13. oh yea just seen it .. yea am waiting for the rest of the fleet and then gonna make a new photo of the fleet. should have the new pic up in the next week Thanks for that !
  14. Hey when someone fills out the form to join when they click submit this comes up Warning: imagecreatefromstring() [function.imagecreatefromstring]: Empty string or invalid image in /var/www/vhosts/royles.eu/httpdocs/core/common/PilotData.class.php on line 1016 You will be contact by the staff when you have been accepted in to the airline ?? Nathan
  15. Royles Virtual Airlines is now open to all pilots! Our Airbus A321 Has been released to pilots and our whole fleet will be up and running By the end of August witch will include B737-800 Airbus A319 B767-300 EMB170 CRJ-900 B777-200 Airbus A321 B747-400 MD11 Airbus A380 also coming to Royles will be the new cargo division expected to be released by the end of November !# Also all comments would be great
  16. We are happy to announce we are accepting Pilots and staff to join Royles.eu Royles was made by a group of people who are tired of being rushed around in VA's with high levels of demand! so we created Royles Virtual Airline for all pilots to come and fly and enjoy their VA instead of being rushed around. so come join today to enjoy the VA and fly how you want and where you want to fly. Our goal is to make sure all our pilots are happy with the VA and if there is a schedule that they want Just ask and we will add it and the same with our fleet. Our VA is your Va and we want the VA to be what you want it to be just pop on our forums and have your say and give your suggestion We will work as fast as we can to get what you want. Join Today Our fleet is almost ready our FSX AND FS9 fleet will be HD compatible with HD Or None HD Compters And due to be ready by the middle of august our FSX Airbus A321 Is now ready to use and the rest will be up and running by the middle of august Hope to see you there
  17. go to http://www.fspremier.org/ and contact there VP Of sales use this email Nunder@royles.eu
  18. lol thats sounds like a good idea {hint}
×
×
  • Create New...