Active Articles: 2038
Total Categories: 16
Sub Categories:616
PHP & File Compression/Archiving techniques | ||||||||
PHP has some very easy, simple yet powerful, extensions for file compression support. zip, gZip, bZip2, LZF libraries are popular extensions with php. Each one is actually a different compression format... all of them have their own algorithms to compress files, and some of them support mentioning which compression algorithm you want to use, while ... learn more
| ||||||||
| ||||||||
Upload A File From A Form | ||||||||
This tutorial will cover how to make a basic PHP upload script. You can easily convert or change it. ... learn more
| ||||||||
| ||||||||
Secure File Upload with PHP | ||||||||
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. ... learn more
| ||||||||
| ||||||||
Page Titles by Folder Names | ||||||||
This is a useful little script for changing the title of multiple pages based on the folder name. This comes in handy if you have several pages with the same title within one folder. ... learn more
| ||||||||
| ||||||||
Renaming Files within a Directory | ||||||||
Using the common File I/O functions of Php such as opendir, is-dir, readir and rename, this script lists files while extracting unwanted ones and rename them. ... learn more
| ||||||||
| ||||||||
Converting Mini File Host into FPS | ||||||||
This script will convert all the file information, with an option to move the files into the new FPS (Free PHP Scripts) Free File Hosting script. ... learn more
| ||||||||
| ||||||||
Creating a file upload system | ||||||||
In this tutorial I will show you how to create a simple file upload system with your user can upload a file from the local computer to your webserver. As you will see it is not so complicated to implement this very usefull script. ... learn more
| ||||||||
| ||||||||
Writing to a File | ||||||||
This script takes some text from an online form and write it to a file on the server. If the file does not exist, it attempts to create it. ... learn more
| ||||||||
| ||||||||
File manipulation (Part-2) | ||||||||
In this PHP Tutorial you will learn the 2nd Part of File Manipulation Reading lines from a file, Reading arbitrary amounts of data from a file, Writing to a file, Creating directories, Removing a directory and Opening a directory for reading. ... learn more
| ||||||||
| ||||||||
Working with Directories | ||||||||
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 ... learn more
| ||||||||
| ||||||||
PHP AJAX example: asynchronous file upload | ||||||||
Asynchronous file uploads is quote popular feature in modern AJAX web-applications. However standard AJAX classes (XmlHttpRequest) does not have capabilities to process or send files selected with "file dialog" (input type="file"). This article contains example application (trivial file-sharing service, like rapidshare, megaupload or yousendit) which uses embedded frames (IFRAME) to upload file. While file is ... learn more
| ||||||||
| ||||||||
Gzip Compression | ||||||||
This script radically reduces loading time by sending HTML in a compressed format. ... learn more
| ||||||||
| ||||||||
Open/Read/Write files for beginners | ||||||||
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. ... learn more
| ||||||||
| ||||||||
Opening files with PHP | ||||||||
A brief guide to opening and managing files using PHP's fopen() function. ... learn more
| ||||||||
| ||||||||
Changing directory using chdir() | ||||||||
In your PHP scripts at some stage you may wish or need to completely change the directory in which to look in - for examples the directory to look for files to include. This tutorial shows you how to change dir for file inclusion. ... learn more
| ||||||||
| ||||||||
File manipulation (Part 1) | ||||||||
In the PHP Tutorial You will learn about File manipulation (Part 1) - Checking file existence, A file or directory, Determining file size, Creating and deleting files and Opening a file for writing, reading, or appending.You can test for the existence of a file with the file_exists() function.file_exists() takes one element, which is a string ... learn more
| ||||||||
| ||||||||
PHP Script Tips - Working with Directoris and Files | ||||||||
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 ... learn more
| ||||||||
| ||||||||
PHP Form Image Upload | ||||||||
This tutorial shows you how to upload an image on your server using PHP and html forms. You will also learn how to verify if the uploaded file is an image (checking the extension), if it doesn't overtakes a size limit and how to change the uploaded file name. ... learn more
| ||||||||
| ||||||||
Creating a Multi-File Upload Script in PHP | ||||||||
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 ... learn more
| ||||||||
| ||||||||
PHP Tutorial - File Upload, tizag.com | ||||||||
A very useful aspect of PHP is its ability to manage file uploads to your server. Learn how to that.. ... learn more
| ||||||||
| ||||||||
