Jump to content

scottjgd

Members
  • Posts

    18
  • Joined

  • Last visited

scottjgd's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Well we are ready for the world Canada Charters and Cargo is a fictional airline based in Toronto, Ontario (CYTZ and CYYZ),Hamilton(CYHM) our cargo hub, as well as Calgary (CYYC), and Whitehorse(CYXY). Designed on the structure of a low-cost Canadian charter and cargo company with destinations limited only by your imagination !! Here at Canada Charters, the flight ops are very simple, and we have tried to make it just as enjoyable for the rookie flight-simmer as well as the veteran. Any pilot, at any time, can fly to and from anywhere they wish in the world. They can also choose to fly one of our diverse schedule options, from Southern And Northern Ontario Commuter routes to our Real world flights series, using any of the available aircraft currently in the CCC hanger. The Canada Charters fleet incorporates many different aircraft types from the smaller Cessnas all the way up through the Boeing and Airbus families, as well as a fine selection of rotary wing craft. We here at Canada Charters sincerely believe that our pilots come first and strive to ensure that they are given the opportunity to enjoy this hobby to its fullest. Now actively recruiting pilots come check us out cvcharters.org
  2. Hi Dave, Quick questions on this is it possible to have it so only the latest event and not past events shows up? and aslo is there a way to limit the amount of events that show up? Reason I'm asking is want to put this in the main page in a tabs panel and would like to limit it to just the current events and there would this enough panel real estate for about 5 events Thanks
  3. its relative data it is just in the flight number where the flight number for example -NOC001 basically i want to strip out the numbers at the end of the flight number for the search filter
  4. Sorry But this is not a duplicate post my problem is different, that part I already pretty much knew and would result in a drop down list of about 500 items in length what i need is how to truncate the data field so only the 3 letters of the flight num show up so instead of -NOC001 I get NOC. Thank You for your input though
  5. So what I am looking to do is add the ability to search the schedules by division. Our VA uses divisions to distinguish flights in the schedule as follows: CCC-NOC001 CCC-EOC001 etc. Where the NOC and EOC are divisions. We currently have 9 divisions and the complaint I'm getting is that with all the schedules its hard find a flight they are looking for. So I want to create a division filter based on the flightnum field which in itself is easy enough to do, but I would wind up with a drop-down list of ever flight in the database. What I need to know is how can I create it so that it only searchs for the division code. <div id="division"> <p>Select Division</p> <select id="division" name="division"> <option value="">Select Division</option> <?php if(!$division) $division = array(); foreach($division as $divis) { echo '<option value="'.$divis->name.'">'.$divis->name.'</option>'; } ?> </select> <input type="submit" name="submit" value="Find Flights" /> </div> this is the code for the table so all I need is the code that would be placed in schedules.php or more to the point what I need to make the code look in the flight num for just the 3 letter division code.
  6. I would have to say I agree it would be nice to have something that could do this. We do quite a few tours at our VA from world tours too Northern ops tours and it is difficult setting these up using the current system and there is no way to really track the progress of the tour Simpilots events booking is a bit of a help but still, our last world tour had 140 legs and thats a lot of events to post. When one tour manager could hold the entire thing and track each pilots individual progress on it
  7. Hello I have looked around for a fix for this problem but have not been able to come up with anything to fix this. what i need is to take the fuel burn stats down to 2 place instead of the current 9 places i have tried the format_number but it doesn't seem to be working i'm not sure what i need to do to get this working. Any help would be greatly appreciated. Thanks Scott
  8. good advice Dave but in this case not really nessecary .header { background-color:White; height:138px; overflow:hidden; } there is your problem: .header is a hierarchical DIV tag mean everything pretty much cascades off of it all other DIV are nested into it remove the height tag and you should be fine Also you will need to add some height to the .header1 DIV i would suggest 145px
  9. OK so i have been doing a little work on this and i have got a little accomplished. So what i need now is where do i change the styles for the recent promotions so it looks more like recent flights. And does anybody know what i can do for the recent promotions is there already a prebuilt function i can use.
  10. Ok i've got just the message showing up now but no pilot attached to the message so it reads "Welcome our newest pilot" and nothing else
  11. Fatal error: Call to undefined method Template::render() in /home/dev3/public_html/vms/lib/skins/brilliancev1/frontpage_main.tpl on line 5
  12. I'm not sure whether i need to create a module or if there is just a little code snippet that i can use to accomplish this. What i am looking to do is to create two tables for my front page. 1) Recent Hires The goal is to pull the 5 most recently approved pilots from the db and populate it in a small table. It will be there 'flag img'name and id and date hired eg: 'flagimg'Scott Barlet(CCC002) 08/14/2010 2) Recent promotions The goal is to pull the 5 most recently promoted pilots from the db and populate it in a small table. It will be there 'flag img'name and date promoted eg: 'rankimg'Scott Barlet 08/16/2010 So this is what i am trying to accomplish! Any help would be greatly appreciated. And if this is a module that needs to be created what would be the fields that need to be referenced to accomplish this Thanks Scott
×
×
  • Create New...