Hello,
I have a php page in the form of
<?php
...
?>
<html>
...
</html>
with lets say a txt field and a button. The php part got something like this:
if (txt_field == 1){
do some stuff;
include ("output.php");}
Now when the if condition is indeed true, the output.php page opens up but the original page also opens up below it. How can I prevent the original page from appearing? Any help is appreciated.