category

home / developersection / category

Array in PHP
php 06-Jun-2016
Array in PHP

An array is a data structure that store multiple values in single variable. In PHP to create an array, array() function is used. $mobile = array("S

How to connect with database in PHP
php 04-Jun-2016
How to connect with database in PHP

Before we can access the data in MYSQL database,we have to first connect the server.PHP provides mysqli_connect() function to connect with database. This function has five parameter:

Pagoda Box- A PaaS specially tailored for PHP developers
php 31-Mar-2015
Pagoda Box- A PaaS specially tailored for PHP developers

Normal0falsefalsefalseEN-USX-NONEX-NONEMicrosoftInternetExplorer4 /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal";

Accessing SQL server database with PHP
php 12-Mar-2012
Accessing SQL server database with PHP

The Microsoft SQL Server 2005 Driver for PHP allows PHP developers to access data in SQL Server databases. The driver includes support for Windows and

How to Create Web Service in PHP
php 16-Feb-2012
How to Create Web Service in PHP

Before creating Web Service in PHP first of all I will discuss about what’s Web Service? Web Service is an application that is designed to interact directly with other applications over the internet.

Displaying Data into PHP DataGrid
php 17-Dec-2011
Displaying Data into PHP DataGrid

The basic PHP datagrid requires only as little as two lines of code. Fore mostly, always create PHPGrid object in the first line; then call its methods to define properties, and lastly always call display() to render to screen.

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.