Advertisment
It is very useful, for example when providing downloads, to create a file uploads system. A useful function in PHP is HTTP upload. It will allow...
Learn how to upload images easy using forms and PHP. Great for beginners.
Well, tired of FTP'n everything up to your site? Or even want to allow other members to upload files but you dont' want to give them FTP...
It is simple to write data to a file through the use of 2 fuctions - fwrite() (file write) and fputs() (file put string), although fputs() is an...
An alternative to using a database to store data is to use what are known as flat files. These are basically text files that are stored on your...
This article shows how to upload files in PHP. Uploading files in PHP is very easy. You don't have to use any components as you do in ASP. All...
This is a basic tutorial that will show you how to generate multiple pages of data from a txt file.
This is a step-by-step tutorial that shows how to upload files to the server through an HTML form and PHP. It covers creating the client-side HTML,...
This tutorial/code shows how to read and handle files using PHP. Also explains built-in error protection.
Learn how to upload files directly to your webserver.
Create a form that makes and/or adds data to files on your server. Could be useful in creating a simple guestbook and free for all links flat file...
Learn how to check when the file was last modified using power of PHP.
How to create tab-delimited files in PHP so that they can be read by Excel.
Working with php and making csv or comma separated excel files. No need for objects!
Learn how to retrieve and view data from a flat file database (text document) once it is written.
Although databases are very common, using the file system to store data can be a real alternative. Often, it is easier to implement that way....
Simple PHP uploading file scripts.
You can upload multiple files with one time submittion. Array is a big role in this tutorial, let's see the scripts.
This PHP upload form can limit file size.
Excel files are great for many things. It might though be a little bit tricky to generate them on the fly with php. Therefor I will guide you...