Show code - aboutme.php


<?php
$skip_title = true;
$page_title = "About Me";
include("header.php"); ?>
<?php
function add_line($heading, $text)
{
echo "<span class=\"darktext\">$heading</span>: $text<br>";
}
add_line("Name", "Scott");
add_line("Age", get_age("1973-12-11"));
add_line("Occupation", "Perpetual Student");
add_line("Designation", "Geek Musician");
add_line("Proficiencies", "Computer Theory, Music Theory, Writing, Exam Anxiety?");
add_line("Deficiencies", "Math, Aural Skills, Historical Memory, Remembering to buy pens");
add_line("Education", "Wax-On, Wax-Off -- CS major, Music minor -- sometimes a writer");
add_line("Initiative", "Breezing through college *cough* Ok so I'm not in college, at least for now. Will I go back to UMHB? Let's see, I think I'm at 114 hours. I have to choose a new minor, likely Writing. A minor alone is 24 hours if I recall correctly. I still don't know if I can pass college algebra, possibly not even intermediate algebra. I tried that and stopped going to classes thanks to more depression. Eventually I can pass it I think.");
add_line("Reality", "Struggling to maintain a GPA above 3.2. (Once so long ago)");
add_line("Institution", "<a href=\"http://www2.umhb.edu\">UMHB</a>");
add_line("Resume", "Resume what? I've yet to stop!");
add_line("Contact", "Full body? Oh, right, my email. I hate spam -- nuff said.");
add_line("Political", "I'm a hybrid.");
?>
<?php include("footer.php"); ?>