Add a Vatsim identifier

Can anyone tell me who i can make my Pilot Roster show if they have Vatsim or not and have it link to their VATAWARE account?

like on this VA’s one

http://www.flyaerova.com/index.php/pilots

Thanks in Advance

Can anyone tell me who i can make my Pilot Roster show if they have Vatsim or not and have it link to their VATAWARE account?

like on this VA’s one

http://www.flyaerova…ndex.php/pilots

Thanks in Advance

Hi.

Add:

<?php $fieldvalue = PilotData :: GetFieldValue ( $pilot -> pilotid , 'Vatsim ID' );
if( $fieldvalue != '' )
{
echo '<a href="http://www.vataware.com/pilot.cfm?cid=' . $fieldvalue . '" target="_blank"><img src="/images/charticon.jpg" width="28" height="28" border="0" alt="Vatsim ID" /></a></a>' ;
}
else
{
echo '<img src="/images/nonreg.png" width="20" height="18" border="0" alt="Not Listed" /></a>' ;
}?>

(got the code from a while back)

James

1 Like