| Home : PHP : Articles, Tips & Tutorials : File Manipulation |
| Click "Subscribe" if you want to be notified of new or updated links in this category. | Subscribe |
|
File Manipulation Listings |
|
Total:
6 | Displaying: 1 - 6 |
|
|
PHP More Functions
|
Website
Refer
Review It
|
This section describes file handling in PHP. The fopen() function is used to open files in PHP. The first parameter of this function contains the name of the file to be opened and the second parameter specifies in which mode the file should be opened in...
Updated: 05/01/2004
|
|
Simple Form-Based Image Upload
|
Website
Refer
Review It
|
When I started out in PHP this was really difficult to get working. I hope this tutorial will speed thing up for you in your quest for the perfect webpage.
This Tutorial will upload an gif image to your server, I restricted It to gif just so you can see how it works, I know this code will not work for all of you because of restrictions from your host. I will make a Tutorial later on in how to go around the restrictions and upload an image even though your host says no...
Updated: 02/14/2004
|
|
Writing A File Upload Class
|
Website
Refer
Review It
|
Lately I have seen a ton of questions on the message board about uploading files to the server. It seems as if this is an epidemic that needs to be cured. I have written a PHP class for file uploads which some members of the message board have used and it helped to simplify their lives. Today we will attempt to write our own highly customizable file upload class. Before we get started get yourself a soda and something to munch on because this might take a while. Ready....(pause for the gathering of goodies)..okay let`s begin...
Updated: 02/14/2004
|
|
File uploads made easy
|
Website
Refer
Review It
|
Every time I`ve written some code to upload a file, either to send it off as an email attachment or as an image for some dynamic content piece, I`ve always meant to write a few functions so I don`t have to write the code again...
Updated: 02/14/2004
|
|
File Version Management in PHP
|
Website
Refer
Review It
|
We can find many articles related to file upload, view, download, etc. This article is written on this basic concept of uploading and managing files. File upload is a process of copying the file from your machine to the remote server. Other users of the system then share this file by viewing / downloading. What happens when I upload a file that already exists in the remote folder to which you are uploading? While discussing this problem, various other issues arises, such as...
Updated: 02/14/2004
|
|
Using PHP for RTF
|
Website
Refer
Review It
|
Recently, I had a brief stint with RTF (Rich Text Format) files. I had to write an RTF file and send an RTF file as attachment in mail. Initially it was a pain to understand the RTF file format. Its header part was apparently the most confusing part. But when I had some understanding of the header, the remaining task was not that difficult. Here, I am not going to provide you with codes for writing an RTF, but I`ll help you understand how this can be achieved. Once this is clear, you can write your own class to write an RTF, or for that matter convert a file to RTF...
Updated: 02/12/2004
|
|