You could try SCRIPT_NAME or REQUEST_URI.
Failing that just set a variable to equal PHP_SELF before the include and use that instead. i.e.
$thisprog=$PHP_SELF;
include("some/file/or/other.php");
and in the included file.
<FORM action="<? echo $thisprog; ?>">
not an ideal solution but it would work.
Mark.