Skip to content

Instantly share code, notes, and snippets.

@richardegil
Created November 16, 2012 21:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save richardegil/4090942 to your computer and use it in GitHub Desktop.
Save richardegil/4090942 to your computer and use it in GitHub Desktop.
Carlos - Middle Name
// 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