Jump to content

EZY0001

Members
  • Posts

    21
  • Joined

  • Last visited

Posts posted by EZY0001

  1. Hi, Ive done all that i can see in the forum, about correcting the issues on the live flight board, but i am still not having any luck...

    My coding for the whole page is:

    <style>
    #innerwrapper{
    background:none;
    border:none;
    padding:0px;
    }
    </style>
    <img style="border:1px solid lightgrey;"src="<?php echo SITE_URL;?>/lib/skins/Zumeweb.Pacific.V1/images/default/web_banner.png"/>
    <div class="row-fluid">
    <div class="span9">
    <h3>Welcome Aboard</h3>
    <div class="box">
    <p>Hello, and welcome to our website!</p> <p>Here at Fly High Virtual, we thrive to give our pilots the best, safest, and most fufilling virtual airline experience. Our staff, combined, have had over 20 years in the virtual airline industry, with over 5 years managing virtual airlines. Most, if not all of our pilots have a geniune keen interest in aviation, and have some ambition, or connection to the real - life airline world.</p> <p>Fly High Virtual, is a free service, for FSX enthusiasts wishing to take their Flight simulation hobby to the next level, joining with people from around the world, online, to do what we love most, flying!</p> <p>If you would like to register for Fly High Virtual, please follow the link in the banner above, and we will soon be getting back to you! Best Wishes,</p> <p>CEO</p>
    </div>
    </div>
    <div class="span3">
    <h3><strong>Quick</strong>Facts</h3>
    <div class="box">
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
     <tr>
    <td><b><span class="badge badge-info"><?php echo StatsData::PilotCount(); ?></div></b></td>
    <td>Pilots</td>
     </tr>
     <tr>
    <td><b><span class="badge badge-info"><?php echo StatsData::TotalAircraftInFleet(); ?></div></b></td>
    <td>Aircraft</td>
     </tr>
     <tr>
    <td><b><span class="badge badge-info"><?php echo StatsData::TotalSchedules(); ?></div></b></td>
    <td>Schedules</td>
     </tr>
     <tr>
    <td><b><span class="badge badge-info"><?php echo StatsData::TotalFlights(); ?></div></b></td>
    <td>Completed Flights</td>
     </tr>
     <tr>
    <td><b><span class="badge badge-info"><?php echo StatsData::TotalFlightsToday(); ?></div></b></td>
    <td>Flight(s) today</td>
     </tr>
     <tr>
    <td><b><span class="badge badge-info"><?php echo StatsData::TotalFuelBurned(); ?></div></b></td>
    <td>Fuel burned</td>
     </tr>
     <tr>
    <td><b><span class="badge badge-info"><?php echo StatsData::TotalHours(); ?></div></b></td>
    <td>Hours Flown</td>
     </tr>
     <tr>
    <td><b><span class="badge badge-info"><?php echo StatsData::TotalMilesFlown(); ?></div></b></td>
    <td>Miles flown</td>
     </tr>
    
    </table>
    </div>
    </div>
    </div>
    
    <div class="row-fluid">
    <div class="span9"><h3>Current Flights</h3><div class="box">
    <?php
    $q = "SELECT * FROM ". TABLE_PREFIX ."acarsdata";
    $l = DB::get_results($q);
    if($l != null){
    ?>
    <table border="0" width="100%" cellspacing="4" class="acarsmap">
    <thead>
    <tr>
    <td><b>Pilot</b></td>
    <td><b>Flight Number</b></td>
    <td><b>Departure</b></td>
    <td><b>Arrival</b></td>
    <td><b>Status</b></td>
    <td><b>Altitude</b></td>
    <td><b>Speed</b></td>
    <td><b>Time Remaining</b></td>
    </tr>
    </thead>
    <tbody id="pilotlist">
    <?php
    
    foreach($l as $fl) {
    $lu = strtotime($fl->lastupdate);
    $min_u = strtotime(date("Y-m-d") - 100);
    if($lu > $min_u) {
    echo("<tr>");
    echo("<td>".$fl->pilotname."</td>");
    echo("<td>".$fl->flightnum."</td>");
    echo("<td>".$fl->depicao."</td>");
    echo("<td>".$fl->arricao."</td>");
    echo("<td>".$fl->phasedetail."</td>");
    echo("<td>".$fl->alt." feet</td>");
    echo("<td>".$fl->gs." knots</td>");
    echo("<td>".$fl->timeremaining."</td>");
    echo("</tr>");
    }
    }
    }else{ ?>
    <div class="alert alert-danger">
    
     <strong>Looks Like our Pilots are taking a rest!</strong> There is no current flights online.
    </div>
    <?php
    }
    ?>
    </tbody>
    </table>
    </div>
    </div>
    <div class="span3">
    <h3>Teamspeak Server</h3>
      <div align="center"><iframe frameborder="0" width="260" height="450" src="[url="http://www.teamspeak.co.uk/ajax/viewer_ts3_ext.php?ip=london6.teamspeak.net&tPort=26927&password=20051&iServerId=445&css=fsx%22></iframe></div>"]http://www.teamspeak...</iframe></div>[/url]
     <div class="box"></div></div>
    </div>
    
    
    <div class="row-fluid">
    <div class="span9">
    <h3>Partners</h3>
    <div class="box">
    <center>
    <div class="partners" >
    <a href="[url="http://www.vatsim.net/"]http://www.vatsim.net/"[/url] target="_blank">
    
    <img src="<?php echo SITE_URL; ?>/lib/skins/Zumeweb.Pacific.V1/images/default/partner_logo1.png" class="partnerimg">
    </a>
    <a href="[url="http://elitewebhosting.net/"]http://elitewebhosting.net/"[/url] target="_blank">
    <img src="<?php echo SITE_URL; ?>/lib/skins/Zumeweb.Pacific.V1/images/default/partner_logo.png" class="partnerimg">
    </a>
    
    <a href="[url="http://www.vacentral.net/"]http://www.vacentral.net/"[/url] target="_blank">
    <img src="<?php echo SITE_URL; ?>/lib/skins/Zumeweb.Pacific.V1/images/default/partner_logo2.png" class="partnerimg">
    </a>
    
    </div>
    </center>
    </div>
    
    </div>
    
    <div class="span3">
    <h3>Newest Pilots</h3>
    <div class="box">
    <?php MainController::Run('Pilots', 'RecentFrontPage', 5); ?>
    </div>
    </div>
    </div>

    Hope you can help!

  2. <style>

    #innerwrapper{

    background:none;

    border:none;

    padding:0px;

    }

    </style>

    <img style="border:1px solid lightgrey;"src="<?php echo SITE_URL;?>/lib/skins/Zumeweb.Pacific.V1/images/default/web_banner.png"/>

    <div class="row-fluid">

    <div class="span9">

    <h3>Welcome Aboard</h3>

    <div class="box">

    <p>Hello, and welcome to our website!</p> <p>Here at Fly High Virtual, we thrive to give our pilots the best, safest, and most fufilling virtual airline experience. Our staff, combined, have had over 20 years in the virtual airline industry, with over 5 years managing virtual airlines. Most, if not all of our pilots have a geniune keen interest in aviation, and have some ambition, or connection to the real - life airline world.</p> <p>Fly High Virtual, is a free service, for FSX enthusiasts wishing to take their Flight simulation hobby to the next level, joining with people from around the world, online, to do what we love most, flying!</p> <p>If you would like to register for Fly High Virtual, please follow the link in the banner above, and we will soon be getting back to you! Best Wishes,</p> <p>CEO</p>

    </div>

    </div>

    <div class="span3">

    <h3><strong>Quick</strong>Facts</h3>

    <div class="box">

    <table width="100%" border="0" cellspacing="0" cellpadding="0">

    <tr>

    <td><b><span class="badge badge-info"><?php echo StatsData::PilotCount(); ?></div></b></td>

    <td>Pilots</td>

    </tr>

    <tr>

    <td><b><span class="badge badge-info"><?php echo StatsData::TotalAircraftInFleet(); ?></div></b></td>

    <td>Aircraft</td>

    </tr>

    <tr>

    <td><b><span class="badge badge-info"><?php echo StatsData::TotalSchedules(); ?></div></b></td>

    <td>Schedules</td>

    </tr>

    <tr>

    <td><b><span class="badge badge-info"><?php echo StatsData::TotalFlights(); ?></div></b></td>

    <td>Completed Flights</td>

    </tr>

    <tr>

    <td><b><span class="badge badge-info"><?php echo StatsData::TotalFlightsToday(); ?></div></b></td>

    <td>Flight(s) today</td>

    </tr>

    <tr>

    <td><b><span class="badge badge-info"><?php echo StatsData::TotalFuelBurned(); ?></div></b></td>

    <td>Fuel burned</td>

    </tr>

    <tr>

    <td><b><span class="badge badge-info"><?php echo StatsData::TotalHours(); ?></div></b></td>

    <td>Hours Flown</td>

    </tr>

    <tr>

    <td><b><span class="badge badge-info"><?php echo StatsData::TotalMilesFlown(); ?></div></b></td>

    <td>Miles flown</td>

    </tr>

    </table>

    </div>

    </div>

    </div>

    <div class="row-fluid">

    <div class="span9"><h3>Current Flights</h3><div class="box">

    <?php

    $q = "SELECT * FROM phpvms_acarsdata";

    $l = DB::get_results($q);

    if($l != null){

    ?>

    <table border="0" width="100%" cellspacing="4" class="acarsmap">

    <thead>

    <tr>

    <td><b>Pilot</b></td>

    <td><b>Flight Number</b></td>

    <td><b>Departure</b></td>

    <td><b>Arrival</b></td>

    <td><b>Status</b></td>

    <td><b>Altitude</b></td>

    <td><b>Speed</b></td>

    <td><b>Time Remaining</b></td>

    </tr>

    </thead>

    <tbody id="pilotlist">

    <?

    foreach($l as $fl) {

    $lu = strtotime($fl->lastupdate);

    $min_u = strtotime(date("Y-m-d") - 900);

    if($lu > $min_u) {

    echo("<tr>");

    echo("<td>".$fl->pilotname."</td>");

    echo("<td>".$fl->flightnum."</td>");

    echo("<td>".$fl->depicao."</td>");

    echo("<td>".$fl->arricao."</td>");

    echo("<td>".$fl->phasedetail."</td>");

    echo("<td>".$fl->alt." feet</td>");

    echo("<td>".$fl->gs." knots</td>");

    echo("<td>".$fl->timeremaining."</td>");

    echo("</tr>");

    }

    }

    }else{ ?>

    <div class="alert alert-danger">

    <strong>Looks Like our Pilots are taking a rest!</strong> There is no current flights online.

    </div>

    <?php

    }

    ?>

    </tbody>

    </table>

    </div>

    </div>

    <div class="span3"><h3>Latest News</h3><div class="box"></div></div>

    </div>

    <div class="row-fluid">

    <div class="span9">

    <h3>Partners</h3>

    <div class="box">

    <center>

    <div class="partners" >

    <a href="http://www.vatsim.net/" target="_blank">

    <img src="<?php echo SITE_URL; ?>/lib/skins/Zumeweb.Pacific.V1/images/default/partner_logo1.png" class="partnerimg">

    </a>

    <a href="http://elitewebhosting.net/" target="_blank">

    <img src="<?php echo SITE_URL; ?>/lib/skins/Zumeweb.Pacific.V1/images/default/partner_logo.png" class="partnerimg">

    </a>

    <a href="http://www.vacentral.net/" target="_blank">

    <img src="<?php echo SITE_URL; ?>/lib/skins/Zumeweb.Pacific.V1/images/default/partner_logo2.png" class="partnerimg">

    </a>

    </div>

    </center>

    </div>

    </div>

    <div class="span3">

    <h3>Newest Pilots</h3>

    <div class="box">

    <?php MainController::Run('Pilots', 'RecentFrontPage', 5); ?>

    </div>

    </div>

    </div>

  3. Hello all,

    im a novice to skinning, so simple English would be appreciated!

    I would like to re-skin my flight status board under my flight map to something that looks like this - http://forum.phpvms.net/topic/8702-live-flightboard-just-wondering/

    I have been searching around the forum for a while, and there was no, straight forward answer on how to do this.

    Could someone help please, it would look quite good on my website, and i just need help on how to do it!

    Regards

  4. I recently installed the Event sign up module from SimPilotGroup, and installed it wrong (without database). Now i have 2 events that i entered into the wrongly set up plugin on my homepage (www.easyjet-virtual.net) with no way of deleting them on the admin center! how can i get rid of these?

    Appreciate any help in simple English, i'm only a novice!

  5. Yeah, there was a radio station in a previous va I was in, and to be honest it was a great hit, with pilots listening while they fly with metars and real live Info, the karaoke, childish I know, but that's linked with the radio, pilots just liked the idea. We're just trying to suit what our pilots like, not making it a misery, after all all this va stuff is just a load of fun, what were here for

×
×
  • Create New...