Jump to content

Connor1994

Members
  • Posts

    167
  • Joined

  • Last visited

Posts posted by Connor1994

  1. Checking phpvms_acarsdata...OK
    Checking phpvms_adminlog...OK
    Checking phpvms_aircraft...OK
    Checking phpvms_airlines...OK
    Checking phpvms_airports...OK
    Checking phpvms_awards...OK
    Checking phpvms_awardsgranted...OK
    Checking phpvms_bids...OK
    Checking phpvms_customfields...OK
    Checking phpvms_downloads...OK
    Checking phpvms_expenselog...OK
    Checking phpvms_expenses...OK
    Checking phpvms_fieldvalues...OK
    Checking phpvms_financedata...OK
    Checking phpvms_fuelprices...OK
    Checking phpvms_groupmembers...OK
    Checking phpvms_groups...OK
    Checking phpvms_navdata...OK
    Checking phpvms_news...OK
    Checking phpvms_pages...OK
    Checking phpvms_pilots...OK
    Checking phpvms_pirepcomments...OK
    Checking phpvms_pirepfields...OK
    Checking phpvms_pireps...OK
    Checking phpvms_pirepvalues...OK
    Checking phpvms_ranks...OK
    Checking phpvms_schedules...OK
    Checking phpvms_sessions...OK
    Checking phpvms_settings...OK
    Checking phpvms_updates...OK

  2. Dont be put down by the comments the made in the other post, I saw them. Some of them was simply creative criticism, others was simply repetition although I do acknowledge that it could have been worded a little better in some cases.

    • Like 1
  3. Dear all,

    Firstly I would like to introduce myself. My name is Connor Sullivan and I am the United Kingdom country manager on Virtual-Skies. Virtual-Skies is a network like no other to date, it offers a free service to all virtual enthusiasts. Virtual Skies is commonly compared with VATSIM, IVAO and other common networks when in fact Virtual Skies strives to be in no way related to these networks.

    I write to you all today to make a proposal to yourselves, my aim is to offer other simmers an alternative, a new network, a change or even just another network to fly/control on.

    If you are a Virtual Airline we offer a VA partnership scheme where owners can join us and have access to administrate you VA via our website (www.virtual-skies.com), you can track your hours and compete against other VA's in a roster. We also offer filtered live maps for you to display on your website to show your pilots who are online our network.

    When you join as a member you are given a unique CID and password where you then have access to features like, mentoring session requests, our forums, flight server, teamspeak and many other additional services we provide.

    Most days of the week there is commonly most CTR positions online ensuring some sort of coverage to all flights, we are currently putting students through mentoring sessions and at the moment we use Sweatbox for mentoring until such a time traffic levels increase.

    Virtual Skies isn't like your typical FSHost network, in-fact we operate similar software like VATSIM but are more relaxed but still offer the same level of realism.

    I hope that you take time to discuss with your fellow simmers and think this through. If you decide you would like to give VSN a go or would like more information then head on over to http://www.virtual-skies.com

    Thank-you for your time,

    C-sullivan

    Connor Sullivan

    United Kingdom Country Manager

    http://www.virtual-skies.com

    • Like 1
  4. Hi all,

    prob a really easy solution to most but its really getting me now :D

    I have:

    <?php
    if(!$reports)
    {
    echo 'No reports have been filed';
    return;
    }
    
    
    
    ?>
    
     <table width="100%" cellpadding="4" cellspacing="0">
       <tr align="center">
         <th bgcolor="#f5f5f5"><strong>Pilot</strong></th>
         <th bgcolor="#f5f5f5"><strong>Flight Number</strong></th>
         <th bgcolor="#f5f5f5"><strong>Departure</strong></th>
         <th bgcolor="#f5f5f5"><strong>Arrival</strong></th>
         <th bgcolor="#f5f5f5"><strong>Duration</strong></th>
         <th bgcolor="#f5f5f5"><strong>Aircraft</strong></th>
         <th bgcolor="#f5f5f5"><strong>Landing Rate</strong></th>
       </tr>
       <?php
    $rowclass = 0;
    foreach($reports as $report)
    {
    ?>
       <tr class="row<?php echo $rowclass ?>" align="center">
        <td align="center" scope="col"><?php echo $report->firstname . ' ' . $report->lastname?></td>
         <td scope="col">XLA<?php echo $report->flightnum; ?></td>
         <td scope="col"><?php echo $report->depicao?></td>
         <td scope="col"><?php echo $report->arricao?></td>
         <td scope="col"><?php echo $report->flighttime; ?></td>
         <td scope="col"><?php echo $report->aircraft?></td>
         <td scope="col"><?php echo $report->landingrate; ?> ft/min</td>
    
       </tr>
       <?php
    $rowclass = 1 - $rowclass;
    }
    ?>
     </table>

    But on every latest flight I want one to be one colour the second to be another and for the third to go back to the first e.g

    1 - Blue

    2 - Green

    3 - Blue

    4 - Green

    How would I go about doing that with that code above? Could I get an example please.

    Thanks ;)

×
×
  • Create New...