piper338 Posted January 27, 2010 Report Posted January 27, 2010 Is there a way to see when and display the date the pilot joined our airline? Quote
Administrators Nabeel Posted January 27, 2010 Administrators Report Posted January 27, 2010 Which template? The pilot's take has a "joindate" column Quote
JohnMck93 Posted January 27, 2010 Report Posted January 27, 2010 Cant you do a SQL Query to call the data from phpvms_pilot>joindate? Quote
Administrators Nabeel Posted January 27, 2010 Administrators Report 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
piper338 Posted January 27, 2010 Author Report 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
Administrators Nabeel Posted January 27, 2010 Administrators Report 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
piper338 Posted January 27, 2010 Author Report Posted January 27, 2010 Thanks man, I appreciate it. Quote
Administrators Nabeel Posted January 27, 2010 Administrators Report Posted January 27, 2010 No problem Quote
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.