The problem that I am having is PHP won't allow me to send the variable "$IsEdit" to another page. Here is the HTML & PHP for the two pages:
<form action="Form2.php" enctype="multipart/form-data" method="POST">
<?php
$Test=Test;
?>
<input type="submit" value="Run test" name="submit">
</form>
On the next page...
<?php
echo $_POST["Test"];
?>
This gives me the notice:
Notice: Undefined index: IsEdit in C:\xampp\htdocs\Form2.php on line 2
Can someone please explain how to set things so that the second page displays the line "Test", please?