Thread: note 61604 deleted from function.umask by sp
note 61604 deleted from function.umask
by sp
2006-02-07 18:49:06
Note Submitter: dave
Reason: useless
----
Don't make the mistake I did:
mkdir("$filename", "0777")
(Note the quotation marks around the permissions portion --
bad!)
The correct syntax:
mkdir("$filename", 0777)
This line will result in proper permissions for the new
directory.
--
PHP Notes Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub
.php