home *** CD-ROM | disk | FTP | other *** search
- --------------------------------------------------------------------------------
- <?php
- /*************************************
- This small pice of Code puts the name
- of the current Document into $docname.
- Very usefull for eg.
- <FORM ACTION="<?echo $docname;?>" METHOD=POST>
- *************************************/
- $dirpices = explode( "/", $PHP_SELF);
- $docname = end($dirpices);
- ?>
-