This is my last try on this site for what seems would be so simple to one that knows the answer.
<?php
session_start();
$_SESSION['XXX'] = $_POST['XXX'];
print '<html><body>
<a href="Menu1.php">click here</a>
</body></html>';
?>
How can I complete the task in the code above WITHOUT A BUTTON TO PRESS TO GO TO A MENU. How do I replace the line <a href="Menu1.php">click here</a> to make it just go to
Menu1.php page.
Thank you.
<?php
session_start();
$_SESSION['XXX'] = $_POST['XXX'];
print '<html><body>
<a href="Menu1.php">click here</a>
</body></html>';
?>
How can I complete the task in the code above WITHOUT A BUTTON TO PRESS TO GO TO A MENU. How do I replace the line <a href="Menu1.php">click here</a> to make it just go to
Menu1.php page.
Thank you.