Ok I got that part working now. My replace question is, how would I use a replace to replace $showtime with a new date('h:i:s'); in the same spot? For instance if I just add another echo to it as is, it just keeps adding them on, and keeps adding them to never never land. I just need to to replace the first one with another one, not add them on. Please let me know, thank you very much.
<?php
$showTime = date('h:i:s'). "\n";
echo "$showTime";
?>