Uploading files and making a directory with PHP
Not sure if anybody can/will answer this, I am just starting php programming and was wondering if someone can point me in the right direction. I want to have a page where you select and image to upload and you can specify a folder name, the script creates the folder and puts the image in that folder that was specified in the html form. i.e I upload john.jpg and I put in john as a folder name, so that when I go to get the image its i开发者_运维问答n uploads/john/john.jpg . Any help would be usefull
To create a directory: http://www.php.net/manual/en/function.mkdir.php
A nice tutorial on PHP uploads http://www.tizag.com/phpT/fileupload.php
Welcome on SO!
Sean, I wish someone had directed me to frameworks when I first started. It would have saved me all the hassle. Zend, CakePHP, Symphony are all good frameworks. I personally use Yii. It's a life saver.
Yii site
Go there, get the framework and read the documentation. It makes it all so much easier.
精彩评论