Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 30th, 2012  |  syntax: None  |  size: 0.23 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php
  2.  
  3.         $classifications = array(
  4.                 'student-undergraduate' => 'Student',
  5.                 'student-graduate' => 'Student',
  6.                 'faculty' => 'Faculty',
  7.         );
  8.  
  9. $class = $field_profile_class[0]['value'] ;
  10. print $classifications[ $class ] ;
  11.  
  12. ?>