piper338 Posted January 27, 2010 Report Share Posted January 27, 2010 Is there a way to see when and display the date the pilot joined our airline? Quote Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted January 27, 2010 Administrators Report Share Posted January 27, 2010 Which template? The pilot's take has a "joindate" column Quote Link to comment Share on other sites More sharing options...
JohnMck93 Posted January 27, 2010 Report Share Posted January 27, 2010 Cant you do a SQL Query to call the data from phpvms_pilot>joindate? Quote Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted January 27, 2010 Administrators Report Share Posted January 27, 2010 It might be available already, depending on the template. Which template were you thinking about? $pilot->joindate or $userinfo->joindate You have to see what's used in the template (like, if you see $pilot->code, replace "code" with "joindate") Quote Link to comment Share on other sites More sharing options...
piper338 Posted January 27, 2010 Author Report Share Posted January 27, 2010 <?php echo $userinfo->joindate;?> Got it thanks! is there a list of these functions? I don't know much about php sorry... Quote Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted January 27, 2010 Administrators Report Share Posted January 27, 2010 For those, you use the same column names as the table. You can also do: print_r($userinfo); And it will output all the fields you can use. You can do that on any variables and it will show you details Quote Link to comment Share on other sites More sharing options...
piper338 Posted January 27, 2010 Author Report Share Posted January 27, 2010 Thanks man, I appreciate it. Quote Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted January 27, 2010 Administrators Report Share Posted January 27, 2010 No problem Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.