I know PHP_SELF contains the value of the current script thats running, my question is, say i have example.php and inside that file i have
<?php
include "form.php";
?>
where the form.php is a form who's action is PHP_SELF, now is PHP_SELF set to example.php or is it form.php?
Thanks