tag

home / developersection / tag

Read and Write file in PHP
php 30-Nov-2011
Read and Write file in PHP

From PHP you are able to open up a file on your server and write to it. If the file does not exist then we can create it, however if the file already exists then you must open in append mode so it will be writable.

Pagination in PHP
php 15-Nov-2011
Pagination in PHP

As your database grows, showing all the results of a query on a single page is no longer practical that’s why pagination is used in PHP. You can displ

HTTP Functions in PHP
php 04-Nov-2011
HTTP Functions in PHP

The HTTP functions let you manipulate information sent to the browser by the Web server, before any other output has been sent.There are mainly four H

Post, Get and Request Function in PHP
php 17-Oct-2011
Post, Get and Request Function in PHP

Post, Get and Request function plays an important role in passing value from one form to another in PHP. Let’s have a brief description about these.

Include and Require function in PHP
php 20-Sep-2011
Include and Require function in PHP

Before discussing about include () and require () function in PHP first we will described what is Server Side Includes (SSI)? Server Side Includes (SS

How to create and destroy session in php?
php 20-Sep-2011
How to create and destroy session in php?

Session management is a mechanism to maintain state about a series of requests from the same user across some period of time. That is, the term "session" refers to the time that a user is at a particular web site.

PHP Cookies
php 07-Sep-2011
PHP Cookies

Cookies are a mechanism for storing data in the remote browser and thus tracking or identifying return users. I.e. a cookie is often used to identify