Jump to content

Henrique

Members
  • Posts

    20
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Henrique

  1. I tried, but the map does not appear and does not show pilots flying
  2. Is it possible to show on the frontpage, the pilots flying at the moment and where they are?
  3. Hi folks, I have a running phpvms on my web and I have a another website, and I want to know if there is a way I can embed the live acars map? I tried figuring out the root part of the acars map. for an ex: www.website.com/map but cant find it on the files. Hope this is clear. My code: I'm using open street map <div class="center"> <!-- Full Width Wrapper --> <div class="maincontent-full"> <!-- Full Width Content --> <p> </p> <!-- script pilotos --> <script src="http://dev.henri.com/lib/js/base_map.js"></script> <script src="http://dev.henri.com/lib/js/acarsmap.js"></script> <IFRAME SRC="http://dev.henri.com/action.php/acars" WIDTH=850 HEIGHT=1000> <!-- script pilotos --> <!-- Full Width Wrapper End --> </div> </div> <p> </p> <p> </p> <div class="clear"></div> </div>
  4. Is APVacars supported on x plane 11?
  5. it worked, thank you very much.
  6. how can i put a table there? table in echo
  7. Message: Invalid argument supplied for foreach()
  8. How can I display the list of pilots on my external site? I'm using <?php include(/sytem/core/codon.config.php'); ?> ( it is working perfectly, but I just can't make the pilot list for my site. )
  9. I think my module is outdated, could you send me what you use?
  10. this location is automatically filled with the airport hud, so much so that in the old code it generates normal flights but in its code you it does not generate
  11. ok thank you so much I'm waiting
  12. this location went blank when I put your code
  13. My version: php 5.5 simpilot he adds icao and doesn't scale! https://prnt.sc/oxbes2
  14. when i disable the server warnings it gives this error Fatal error: Class 'mysqli' not found in C:\Program Files (x86)\Ampps\www\intranet\core\classes\ezdb\ezdb_mysqli.class.php on line 101
  15. could you help me with this error? ( Warning: Creating default object from empty value in C:\Program Files (x86)\Ampps\www\core\templates\randomsearch.php on line 12 ) <?php /* * phpVMS Module: Random Itinerary Builder * Coding by Jeffrey Kobus * www.fs-products.net * Verion 1.3 * Dated: 03/22/2011 */ $pilotid = Auth::$userinfo->pilotid; $last_location = PIREPData::getLastReports($pilotid, 1); if(!$last_location) $last_location->arricao = Auth::$userinfo->hub; $last_name = OperationsData::getAirportInfo($last_location->arricao); $equipment = OperationsData::GetAllAircraftSearchList(true); $airlines = OperationsData::getAllAirlines(true); ?> <table border = "0"> <tr> <th scope="col">Random Itinerary from Current Location</th> </tr> <tr><form name="randomflights" id="randomflights" action="<?php echo SITE_URL?>/index.php/randomflights/getRandomFlights" method="post"> <td>Current Location Preselected </td> <table> <tr> <td width ="25%"><b>Current Location:</b></td> <td width ="75%"><select id="depicao" name="depicao"> <option value="<?php echo $last_location->arricao?>"><?php echo $last_location->arricao?> (<?php echo $last_name->name?>)</option> </td> </tr> <tr> <td width ="25%"><b>Airline:</b></td> <td width ="75%"><select id="airline" name="airline"> <option value="">Select Airline</option> <?php if(!$airlines) $airlines = array(); foreach($airlines as $airline) { echo '<option value="'.$airline->code.'">'.$airline->name.'</option>'; } ?> </td> </tr> <tr> <td width ="25%"><b>Aircraft:</b></td> <td width ="75%"><select id="equipment" name="equipment"> <option value="">Select Equipment</option> <?php if(!$equipment) $equipment = array(); foreach($equipment as $equip) { echo '<option value="'.$equip->icao.'">'.$equip->name.'</option>'; } ?> </td> </tr> <tr> <td width ="25%"><b>Number of Flights:</b></td> <td width ="75%"><select id="count" name="count"> <option value="3">3</option> <option value="5">5</option> <option value="15">15</option> </select></td> <td><input type="submit" name="submit" value="Find Random Flights"></td> </tr> </table> </form> </tr> </table>
×
×
  • Create New...