home / developersection / category
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,
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
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
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
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.
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 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.
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.
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 Record:UPDATE statement is used for update existing records in MySQL database table.Syntax:UPDATE table_name SET column_name1 = value1, colum
INSERT INTO Statement is used to insert new record into table. Syntax:INSERTINTO table_Name ( column_name1, column_name2, .....column_nameN) VALUE
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