<?php
// passthru_test.php
// RJM Programming
// April, 2022
 if (isset($_GET['justpassthru'])) {
   passthru('echo "PHP passthru content with no HTML embellishment"');
 } else {
   echo "<html><head><title>PHP passthru content has HTML document.title embellishment</title></head><body><pre>" . passthru('echo "PHP passthru content has HTML document.title embellishment"') . "</pre></body></html>";
 }
 exit;
?>
