Star Hoster
Photoshop Tutorials
Anonymous Web Surfing
Funny Jokes
Myspace Friends
Open Treasure Chest
Building in Paradise


July 4, 2006

Working With Files Part Two

Filed under: Intro PHP Tutorials — phpdeveloper @ 12:15 am

File Close

The next step after you have opened a file is to close that file.

Description

In PHP it is not required to close all your files after using them because the server will close all files after the PHP code finishes execution.

File Close Function

In a previous section, we had a call to the function fclose to close down a file after we were done with it. (more…)

July 3, 2006

Working With PHP Files

Filed under: Intro PHP Tutorials — phpdeveloper @ 10:14 pm

Files

Working with files is a basic necessity for programmers and PHP gives you a great facility for creating, uploading, and editing files. This section is completely dedicated to how PHP can interact with files. After completing this section you should have a solid understanding of all types of file manipulation in PHP. (more…)

July 2, 2006

PHP Arrays

Filed under: Intro PHP Tutorials — phpdeveloper @ 1:12 am

Arrays

An array is a data structure that stores one or more values in a single value. For experienced programmers it is important to note that PHP’s arrays are actually maps ,each key is mapped to a value. (more…)

July 1, 2006

PHP Post And Get Form Method

Filed under: Intro PHP Tutorials — phpdeveloper @ 1:08 am

Post and get method of form.

Recall from the PHP Forms Lesson where we used an HTML form and sent it to a PHP web page for processing. In that lesson we opted to use the the post method for submitting, but we could have also chosen the get method. This lesson will review both transferring methods. (more…)

June 30, 2006

Using PHP With HTML Forms

Filed under: Intro PHP Tutorials — phpdeveloper @ 1:00 pm

Using PHP with HTML Forms

It is time to apply the knowledge you have obtained thus far and put it to real use. A very common application of PHP is to have an HTML form gather information from a website’s visitor and then use PHP to do process that information. In this lesson we will simulate a small business’s website that is implementing a very simple order form. (more…)

« Previous PageNext Page »