Jump to content

Taran

Members
  • Posts

    204
  • Joined

  • Last visited

Posts posted by Taran

  1. Click here to start your website now!

    7.png

    WE NEVER SLEEP

    If you need us, we are always here. You can always count on reaching us 24/7/365. Just give us a call or visit our live chat. We are here for you.

    WE ARE AFFORDABLE

    When considering the highest quality of support, hardware, features, and unbeatable uptime; no-one comes close to matching our prices or our service!

    WE ARE VERY FRIENDLY

    We are not cocky, we have just been told numerous times that we are very friendly, and we just wanted to let you know!

    60 DAY MONEY BACK GUARANTEE

    We are confident that you will love our hosting services, but if for any reason it doesn't work out, we will provide you with your money back. Guaranteed!

    MULTIPLE SERVER LOCATIONS

    We have servers spanning multiple locations. From Dallas Texas, London England and Singapore Asia. Rest assured that eleven2 is your web hosting provider, locally and internationally. Plus many more locations coming soon!

    WE ARE HERE TO STAY

    Unlike many companies who have plans of selling out, we have plans for sticking around for a very long time. We are fiscally responsible, debt-free, and we focus on our financials to ensure the upmost stability to our customers.

  2. Need someone to make some repaints on FSX Freeware.

    I want the painter to paint the aircraft and send me the files with the full plane so I can put them in auto-installers for the pilots. PM me a price per aircraft and as a package for all.

    Aircraft List:

    MD-90

    CRJ-900

    Lear 45

    B737-800

    B747

    B788

    A380

    A320

    A319

    C208

    B717

    C185 (Carenado)

    B757-200 -300

    Here's the paint:

    boieg_787_8_legacy_gone_wild_livery_with_text_sh.png

    • Like 1
  3. So I have a new world map for my wall. I like to start new maps with a new VA. I mark all the cities I fly to on the map. I'm looking for an airline that flies both domestic USA and international. I'd also like a VA that has a large chance of earning a staff position as I really enjoy helping out a great community.

    Think not of what your VA can do for you, but what you can do for your VA.

    I want an airline that has custom skins and downloadable fleet, also TeamSpeak3 and custom ACARS is a must!

    Please Post here your advertisement(s). I will make my decision when I find the "Perfect" VA.

    Thank You,

    Taran

  4. Not quite sure if it matters but here is what i use...it has some styling you can change. What is different about my code is that it shows the TOP PILOTS by flights and display the amount of flights

    Feel free to use it!

    <?php
    $month = date("m");
    $year = date("Y");
    $topflights = TopPilotData::top_pilot_flights($month, $year, 5);
    echo '<table cellpadding="0px"><tr><td width="100%" valign="top">';
    echo '<table class="datatable" width="100%" style="background-color:#FFF">';
    echo '<tr bgcolor="#e01933">';
    echo '<th><font color="white">Pilot</font></th>';
    echo '<th><font color="white">Flights Flown</font></th>';
    echo '</tr>';
    
    foreach ($topflights as $top) {
    $pilot = PilotData::GetPilotData($top->pilot_id);
    echo '<tr align="center" valign="middle">';
    echo '<td>'.PilotData::GetPilotCode($pilot->code, $pilot->pilotid).' - '.$pilot->firstname.' '.$pilot->lastname.'</td>';
    echo '<td>'.$top->flights.'</td>';
    echo '</tr>';
    }
    
    echo '</table>';
    echo '</table>';
    
    
    ?>
    <?php {
    }
    ?>

    How can i get this code to pull only PIREPS that have been accepted?

  5. Having an issue. I added a new space to have 3 images on the slider. slideheader0.jpg , slideheader1.jpg , slideheader2.jpg. I've cleared my cache and all but it still shows the old header i made and not the 2 new ones at all. I deleted the old one completely yet it still shows.... what's going on?

  6. Disregard, I got it! For anyone else wanting this here's an example of the code:

    <li><a href="#">Regions</a>
       <ul class="sub_menu">
        <li><a href="<?php echo url('/pages/NorthAmericanregion'); ?>" title="NorthAmerica">North America</a></li>
        <li><a href="<?php echo url('/pages/SouthAmericanregion'); ?>" title="SouthAmerica">South America</a></li>
        <li><a href="<?php echo url('/pages/Europeanregion'); ?>" title="Europe">Europe</a></li>
        <li><a href="<?php echo url('/pages/Asianregion'); ?>" title="Asia">Asia</a></li>
        <li><a href="<?php echo url('/pages/Australianregion'); ?>" title="Australia">Australia</a></li>
        <li><a href="<?php echo url('/pages/Africanregion'); ?>" title="Africa">Africa</a></li>
       </ul>
       </li>
    

  7. I want a sub tab of the regular dropdown. Like when they scroll over one of the tabs on the original dropdown, there's another set of tabs that pop out of the side of the first one.

    So i want like this:

    Corporate

    -Hubs

    --KSEA

    --KBOS

    etc.

  8. That's to get the number of pilots. Is there a way to get a single roster for this region? I want to make a Region page so I want to get a roster put together to show all the pilots of the HUBs within the region all in one. Is there a way?

  9. I'm trying to get the stats for multiple hubs to add automatically and show as one number. i.e. our North American region has 3 hubs (KATL,KBOS,KSEA) I want the stats for those hubs to be pulled as one. when I try it the way simpilot said it just shows nothing.

×
×
  • Create New...