home / developersection / category
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
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:
Normal0falsefalsefalseEN-USX-NONEX-NONEMicrosoftInternetExplorer4 /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal";
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
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.
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.
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.
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
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 plays an important role in passing value from one form to another in PHP. Let’s have a brief description about these.
Before discussing about include () and require () function in PHP first we will described what is Server Side Includes (SSI)? Server Side Includes (SS
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.