Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info
iconfalse

<?php
// Example to show date and time in a nice format
echo "The current date and time is ";
echo date("F j, Y, g:i a");
echo ", in the timezone ";
echo date("e");
// Show date and time from PASE
echo '<br>PASE time: ';
echo `/QOpenSys/usr/bin/date`;
?>

...