home / developersection / tag
$_FILES is a superglobal variable in PHP. It consists of 5 variable: $_FILES[‘file’][‘tmp_name’] – the uploaded file in the temporary directory on t
fopen() function is used to open a file, but in PHP same function is used to create a file. If you use fopen() on a file that does not exists, it will create that file. It has two parameter
A Cookie is a text file that the server embeds on the user’s computer. A cookie is used to identify a user. These cookies are also used for tracking p
In the previous post, we discussed the loop in phpform handling in php. In this article we will talk about function in php.A function is a piece of co
In PHP there are some sorting function .These function are used to sort the array. sort() :This function is used to sort in ascending alphabetical or
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
PHP application can be hosted on the IIS web server by using FastCGI Module that can be found in IIS. Here I’m using IIS 7 as a web server. Before
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.