This is a brief tutorial for those who are new to php, and dont know much php. Here they will learn how to upload files through php. In the next version there will be alot of great features added. Like Multiple Files Uploading
Using Arrays & Loops
Making new folders/files
Editing Files
etc...
FreeVersion: 0.1 Platform(s): n/a Updated: Tue Aug 29 2006
A collection of 8 tutorials on working with directories and files:
How To Create a Directory?
How To Remove an Empty Directory?
How To Remove a File?
How To Copy a File?
How To Dump the Contents of a Directory into an Array?
How To Read a Directory One Entry at a Time?
How To Get the Directory Name out of a File Path Name?
How To Break a File Path Name into Parts?
FreeVersion: n/a Platform(s): linux, windows, freebsd, osx, sun Updated: Mon Jun 12 2006
A collection of 12 tips on uploading files with PHP pages. Clear explanations and tutorial exercises are provided on creating file upload HTML tags, setting encoding type on HTML forms, getting uploaded file information, storing uploaded file in database.
FreeVersion: n/a Platform(s): linux, windows, freebsd, osx, sun Updated: Wed Jun 7 2006
Learn how to perform simple task with files: open, read and write. Check the different commands you may use. Learn to use compressed files (.gz) to save time. An example is included to record IPs and referrers of our page.
A collection of 14 tips on PHP functions on file input and output. Clear answers are provided with tutorial exercises on opening files for reading and writing, appending data to existing files, reading file by line or character, reading file in binary mode. Special topics are:
How To Append New Data to the End of a File?
How To Read One Character from a File?
How To Read a File in Binary Mode?
How To Read Data from Keyborad (Standard Input)?
How To Open Standard Output as a File Handle?
FreeVersion: n/a Platform(s): linux, windows, freebsd, osx, sun Updated: Mon May 22 2006
This tutorial will allow you to have a basic file upload interface with a PHP backend. This tutorial is only for educational purposes and the final PHP file upload script is not robust nor secure enough for a commercial solution.
FreeVersion: n/a Platform(s): n/a Updated: Fri May 5 2006
We've mostly focused on MySQL-type tutorials, but we'll show you in this tutorial the basics of file handling. This includes opening a directory and listing the files, opening a file and showing it's contents and opening, then modifying a file. Deleting a file too!
Version: 1.0 Platform(s): windows, osx Updated: Wed Mar 19 2008
Uploading files to a remote FTP server is very effective while using the cURL library. This short PHP tutorial will show the user how to upload a file to a password protected FTP server.
Version: n/a Platform(s): linux, windows Updated: Thu Oct 18 2007
Creating zip files on a web server is a feature which could be very useful for backups or just for offering an unknown number of dynamic files or folder inside of a directory. This tutorial shows us how handle that with only a few rows of PHP code!
Version: 1 Platform(s): n/a Updated: Mon Oct 1 2007
As is necessary for any language, PHP has a complete set of directory support functions. PHP gives you a variety of functions to read and manipulate directories and directory entries. Like other file-related parts of PHP, the functions are similar to the C functions that accomplish the same tasks, with some simplifications. This tutorial describes how PHP handles directories. You will look at how to create, remove, and read them.
Version: n/a Platform(s): n/a Updated: Fri Feb 23 2007
Frustrated with single-file upload scripts? Looking for an alternate route? Read as Jonathan shows us how easy it really is to setup a multi-file upload script using PHP.
As a PHP programmer I had run into a problem where a client needed a form to upload more than one file at a time. So one night I sat down and spent an hour figuring out the best and easiest way to do this. In this tutorial, the for loop is going to be your best
Version: n/a Platform(s): linux, windows, freebsd, osx, sun Updated: Tue Feb 6 2007
PHP makes uploading files easy. You can upload any type of file to your Web server. In spite of security issues that should be addressed before enabling file uploads, the actual mechanisms to allow this are straight forward. In this tutorial we will consider how to upload files to some directory on your Web server. We will also discuss security issues concerned with the file uploading.
Version: n/a Platform(s): n/a Updated: Tue Jan 16 2007
This script will help you for the baics of uploading images or files to your server using a HTML form and the PHP function copy. We haven't explained form validation or file checking - We'll go into further detail on that in future tutorials. To kick things off, you'll need a HTML form.