Inside your module function create a variable to get the number from url passed through submission of the form.
public function whatever()
{
$var = $_GET['name of the form'];
}
Then use your variable to pass it to ACARS DATA matching the flight number
$sql="SELECT * FROM phpvms_acarsdata WHERE flightnumber = '$var'";
$flight = DB::get_row($sql);
Then use $flight to show the columns
<table>
<tr>
<td>Flight Number</td>
<td><?php echo $flight->flightnumber ;?></td>
</tr>
</table>
Here is the TopPilot module. Hope you enjoy it.
Install:
1. Download the repository at Github and unzip it in a desired location.
2. Upload files into coresponding folders on your website in the oreder.
3. Access it using <?php echo url('/toppilot') ;?>.
4. Enjoy!
---------------------
Demo:
www.parkho.ir
---------------------
Support:
Visit www.parkho.ir and fill out "Contact Me" form. I will get back to you as soon as possible
I have added functions to give the ADMIN some records in Dashboard area.
Install:
-Download and replace PManagerData.class.php from Github.
-Add the following lines to admin/dashboard.php
<?php $days = Config::Get('PILOT_INACTIVE_TIME');?>
<strong>Inavtive Pilots: </strong><?php echo count(PManagerData::InactivePilots());?>
<strong>Pilots With No Pireps In <?php echo $days;?> Days: </strong><?php echo count(PManagerData::PastDuePireps());?>
<strong>Pilots With No Pireps AT All: </strong><?php echo count(PManagerData::NoPireps());?>
Screenshot:
Cheers
The reason is that I used a built-in function to format the currency and that function rounds up or down the results. If you don't want that do the following:
Open airport_search.php and go to line 102 and change the following:
<?php echo FinanceData::FormatMoney(Auth::$userinfo->totalpay) ;?>
To the following:
<?php echo Auth::$userinfo->totalpay ;?>
There is an issue in phpvms_pilots table's structure. The "totalpay" field type is set to "FLOAT" changing the type to "VARCHAR" may resolve your issue.
Thanks. Noted and fixed. You're more than welcome to add to the module if you want but as we have this conversation, this version is in "AS IS" status.
Have you altered or changed codes in pilot_information.php? Seems like you're missing an open <?php tag.
At this time the warning email in PM is manual. I will look into it in the next update.
You're using older version of phpVMS. This module is designed to work with phpVMS 5.5X by simpilot and you're gonna have to upgrade to 5.5x eventually.
There is already a setup for fspassengers in phpVMS all you need is to give your pilots the config file to add to their clients. There is no live map for fspassengers as the software doesn't provide its live data.
What email address did u use when you first installed phpVMS? If you used yahoo or gmail then that's where the problem comes. You'll need to use an email address from your server like "info@yourairline.com"
When u installed phpVMS, what did u use as your email address? If you used gmail or yahoo then that's where the problem is. Use instead an email from your server like "info@yourairline.com"
I had this problem before and found out if you use gmail or yahoo as your installation email then emails won't send but using an email like "yourname@yoursite.com" will work just fine.
I suggest you check to see if your host server has updated php version to 5.5 and if that's the case then you're most likely to upgrade phpVMS to 5.5x by Simpilot as the server might no longer support earlier versions.