コード例 #1
0
ファイル: plan.php プロジェクト: edderrd/aerotour-intranet
		    </tr> 
		    <tr> 
		      <td height="17">&nbsp;</td> 
		      <td><input name="txtMatricula" id="txtMatricula" class="inputs" type="text" width="10%"/></td> 
		      <td><input name="txtFuel" id="txtFuel" class="inputs" type="text" width="10%"/></td> 
		      <td><input name="txtPilotName" id="txtPilotName" class="inputs" type="text" width="80%"/></td> 
		      <td><input name="txtCoPilotName" id="txtCoPilotName" class="inputs" type="text" width="80%"/></td> 
		      <td>&nbsp;</td> 
		    </tr> 
		  </table> 
		  
			<?php 
require_once dirname(__FILE__) . "/PlanParser.php";
require_once dirname(__FILE__) . "/maps/MapsData.php";
$endPoint = $_GET['point'];
$parser = new PlanParser($endPoint);
$route = $parser->getRoute();
$mapsData = new MapsData($endPoint);
$bearingsDistances = $mapsData->getBearingsDistances();
?>
				
		  <table class="tableOne" width="100%"  border="1" cellpadding="0" cellspacing="1" > 
		    <tr> 
		      <th width="30%">Field</th> 
		      <th width="20%">R/W</th> 
		      <th width="10%">Unicom</th> 
		      <th width="10%">Radio</th> 
		      <th width="10%">Approach</th> 
		      <th width="10%">Tower</th> 
		      <th width="10%">Ground</th> 
		    </tr> 
コード例 #2
0
		      <th width="5%" align="center" valign="top" style="padding:5px;"><nobr>Hobbs In</nobr></th> 
		    </tr> 
		    <tr> 
		      <td height="17">&nbsp;</td> 
		      <td><input name="txtMatricula" id="txtMatricula" class="inputs" type="text" width="10%"/></td> 
		      <td><input name="txtFuel" id="txtFuel" class="inputs" type="text" width="10%"/></td> 
		      <td><input name="txtPilotName" id="txtPilotName" class="inputs" type="text" width="80%"/></td> 
		      <td><input name="txtCoPilotName" id="txtCoPilotName" class="inputs" type="text" width="80%"/></td> 
		      <td>&nbsp;</td> 
		    </tr> 
		  </table> 
		  
			<?php 
require_once dirname(__FILE__) . "/PlanParser.php";
$endPoint = $_GET['point'];
$parser = new PlanParser($endPoint);
$route = $parser->getRoute();
?>
				
		  <table class="tableOne" width="100%"  border="1" cellpadding="0" cellspacing="1" > 
		    <tr> 
		      <th width="30%">Field</th> 
		      <th width="20%">R/W</th> 
		      <th width="10%">Unicom</th> 
		      <th width="10%">Radio</th> 
		      <th width="10%">Approach</th> 
		      <th width="10%">Tower</th> 
		      <th width="10%">Ground</th> 
		    </tr> 
			<?php 
foreach ($parser->getAirports() as $number => $row) {