category

home / developersection / category

Using AJAX Poll in PHP
php 28-Sep-2011
Using AJAX Poll in PHP

It is the act of regularly retrieving data from a server to obtain near-live data. This is done through AJAX because it is very lightweight. I.e. AJAX polling script is used for getting user perception (vote result) about any research,

Using AJAX with XML in PHP
php 27-Sep-2011
Using AJAX with XML in PHP

AJAX can be used for interactive communication with an XML. In this article I will show you, how to read an xml file using with AJAX. Let’s have an e

Using AJAX with Database in PHP
php 27-Sep-2011
Using AJAX with Database in PHP

AJAX can be used for interactive communication with a database. The following example will demonstrate how a web page can fetch information from a da

Uploading File into Server using PHP
php 26-Sep-2011
Uploading File into Server using PHP

In this article I will show you, how to upload file into server in PHP. Let’s have an example, how to upload file into server using PHP. Creating Fil

Using AJAX with PHP
php 25-Sep-2011
Using AJAX with PHP

AJAX stands for Asynchronous JavaScript and XML. AJAX is a technique for creating fast and dynamic web pages, it is used to updating parts of a web page, without reloading the whole page.

XML Parser in PHP
php 23-Sep-2011
XML Parser in PHP

Before discussing about the Expat Parser firstly we have to discuss about what is XML? XML stands for Extensible Markup Language. XML is used to describe data and to focus on what data is.

SimpleXML in PHP
php 23-Sep-2011
SimpleXML in PHP

SimpleXML is an easy way of getting an element's attributes and text, if you know the XML document's layout. Compared to DOM or the Expat parser, SimpleXML just takes a few lines of code to read text data from an element.

XML Document Object Model (DOM) in PHP
php 22-Sep-2011
XML Document Object Model (DOM) in PHP

Document Object Model (DOM) provides a standard set of objects for HTML and XML documents, and a standard interface for accessing and manipulating them. Since DOM parser is a tree-based parser so it transforms an XML document into a tree structure.

PHP Session
php 22-Sep-2011
PHP Session

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.

Updating and Deleting Record in MySQL Database Table using PHP
php 21-Sep-2011
Updating and Deleting Record in MySQL Database Table using PHP

Updating Record:UPDATE statement is used for update existing records in MySQL database table.Syntax:UPDATE table_name SET column_name1 = value1, colum

Inserting Record in MySQL database Table using PHP
php 21-Sep-2011
Inserting Record in MySQL database Table using PHP

INSERT INTO Statement is used to insert new record into table. Syntax:INSERTINTO table_Name ( column_name1, column_name2, .....column_nameN) VALUE

Creating Database and Table’s in MySQL
php 20-Sep-2011
Creating Database and Table’s in MySQL

In this article I will show you, how to create database and tables within MySQl database in PHP. Creating Database:CREATE DATABASE statement is used