|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-12-13 06:18 UTC] sander@php.net
[2001-12-13 19:52 UTC] jj at thecloud dot org
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 05:00:01 2025 UTC |
I've tryed to unlink the self .php file with: unlink($PHP_SELF); and got this warning: Warning: Failed opening '/home/sites/site4/web/uff.php' for inclusion (include_path='') in Unknown on line 0 Obviously: 1) the file name was uff.php placed in the path '/home/sites/site4/web/ 2) The page had no "include" statements. uff.php ------- <?php if ($login!="hello"){ exit("Hello"); } ?> Hello Word <?php unlink($PHP_SELF); ?> Byez