Hi all,
Is there anyway I can make IF conditions on $POST variables so that the PhP file will only load them when the correct HTML form links to it? Or do I have to make a seperate PhP page with identical content but without the $POST variables?
Dennis
do you mean something like?
</php if (isset($_POST['submitted'])) { // display content } else { // do something else } ?>