First option to get the content of $message printed out on the page do this:
$message = '
Name of Person Trying to contact you: $name;<br>
Phone Number: $phone;<br>
$name has included this message / comment:<br>
$text;
';
echo $message;
Second option if you want to just send e-mail with the content of the $message as a e-mail content do this:
$message = '
Name of Person Trying to contact you: $name;<br>
Phone Number: $phone;<br>
$name has included this message / comment:<br>
$text;
';
mail('runar6031769@hotmail.com', "Contact Us Form Subject:$subject", $message,"From: $name <$email>");
Third if you want to do both do:
$message = '
Name of Person Trying to contact you: $name;<br>
Phone Number: $phone;<br>
$name has included this message / comment:<br>
$text;
';
echo $message;
mail('runar6031769@hotmail.com', "Contact Us Form Subject:$subject", $message,"From: $name <$email>");
And for you just start reading on this if you want to learn real PHP... 😉