Created
November 16, 2012 21:10
-
-
Save richardegil/4090942 to your computer and use it in GitHub Desktop.
Carlos - Middle Name
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Middle Initial | |
<?php if ($middle_intial != '')) { | |
echo '<h3>' . $first_name . ' ' . $middle_initial . '. ' . $last_name . ', ' . $the_titles . '</h3>'; | |
} else { | |
echo '<h3>' . $first_name . ' ' . $last_name . ', ' . $the_titles . '</h3>'; | |
} | |
?> | |
// Section | |
<?php if ($internship != '') { | |
echo '<h4>Internship</h4>'; | |
echo '<p>' . $internship . '</p>'; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment