LinksTraffic - Links and traffic exchange system

Php - Writing to a file

english directory french directory
Search: Advanced Search

Index Webmaster | Tutorials | Web Scripts

Php - Writing to a file

Php by category
php code snippets Index Php data SEO image 3d Data Mining networking Graphism
networking Network user data User Management

Writing to a File

Copy and paste the following code into your editor and run it (code comments are included).
If you want to see the live result, try it here (new window).

The writefile.html file (online form):

The writefile.php file:

From the page http://www.php.net...fopen.php you can learn about the following features:

A list of possible modes for fopen() using mode:

modeDescription
'r'Open for reading only; place the file pointer at the beginning of the file.
'r+'Open for reading and writing; place the file pointer at the beginning of the file.
'w'Open for writing only; place the file pointer at the beginning of the file and truncate the file to zero length. If the file does not exist, attempt to create it.
'w+'Open for reading and writing; place the file pointer at the beginning of the file and truncate the file to zero length. If the file does not exist, attempt to create it.
'a'Open for writing only; place the file pointer at the end of the file. If the file does not exist, attempt to create it.
'a+'Open for reading and writing; place the file pointer at the end of the file. If the file does not exist, attempt to create it.
'x'Create and open for writing only; place the file pointer at the beginning of the file. If the file already exists, the fopen() call will fail by returning FALSE and generating an error of level E_WARNING. If the file does not exist, attempt to create it. This is equivalent to specifying O_EXCL|O_CREAT flags for the underlying open(2) system call. This option is supported in PHP 4.3.2 and later, and only works for local files.
'x+'Create and open for reading and writing; place the file pointer at the beginning of the file. If the file already exists, the fopen() call will fail by returning FALSE and generating an error of level E_WARNING. If the file does not exist, attempt to create it. This is equivalent to specifying O_EXCL|O_CREAT flags for the underlying open(2) system call. This option is supported in PHP 4.3.2 and later, and only works for local files.

Comments

No comment yet, write the first now here or onto our webmaster forum

Webmaster Corner

The Millionaire league
Dozens of Easy and Automatic Ways to Make Money Online Everyday!

Niche Annihilation Method
Crush Your Competition!
Download the method Now

iPowerWeb
Incredible Membership Packages - Web Hosting!

One Month Free Trial! ProStores - an eBay Company
Gain customers, increase sales, and boost profits with your own Web Store.

Get Google Pay-Per-Click Ads Free!
Automated Cash Formula $$$

Categories

Copyright 2004-2008 @ LinksTraffic RHM Solution ::: Partners | Privacy | Contact us form