Name is (last, first): ";
echo $lastname;
echo ", ";
echo $firstname;
// Another one of php's built-in functions.
// We make a new variable to hold the value
// of whatever our function produces.
$weirdname = strrev($lastname);
echo "Last name, reversed: ";
echo $weirdname;
echo "
Done.";
?>