Ask your own question, for FREE!
Computer Science 18 Online
OpenStudy (anonymous):

how to create folder on php (syntax)...?

OpenStudy (anonymous):

u need to check if the directory exists... you should use is_dir() function... PHP Code: <? if(is_dir("directory")) echo "directory exists!"; ?> then you need to make the new directory... PHP Code: <? mkdir("directory"); ?> where directory put the name u want... and that's it...

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!