tag

home / developersection / tag

File Upload in PHP
php 07-Jun-2016
File Upload in PHP

$_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

File Handling in PHP
php 07-Jun-2016
File Handling in PHP

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

What is a cookie?
php 07-Jun-2016
What is a cookie?

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

Functions in PHP
php 06-Jun-2016
Functions in PHP

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

Sorting of an array in PHP
php 06-Jun-2016
Sorting of an array in PHP

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

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 host PHP on windows server IIS 8
iis 7.5 12-Mar-2012
How to host PHP on windows server IIS 8

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

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.