category

home / developersection / category

Selecting record from MySQL database in PHP
php 20-Sep-2011
Selecting record from MySQL database in PHP

‘Select’ statement is used to select record from MySQL database server.Synatx: select column_name  from  table_nameLet’s have an example, how to selec

Connecting PHP script with MySQL
php 19-Sep-2011
Connecting PHP script with MySQL

Before you can access data in a database, you must create a connection to the database. In PHP, this is done with the mysql_connect() function. Synta

Configure MySQL Database
php 18-Sep-2011
Configure MySQL Database

MySQL is an open source database server. MySQL Database powers the most demanding Web, E-commerce and Online Transaction Processing (OLTP) applications.

PHP Filter
php 16-Sep-2011
PHP Filter

PHP filters are used to validate and filter data coming from insecure sources, like user input. A PHP filter is used to validate and filter data coming from insecure sources. T

PHP Exception
php 15-Sep-2011
PHP Exception

PHP 5 has an exception model similar to that of other programming languages. Exceptions are used to change the normal flow of a script if a specified error occurs. An exception can be thrown, and caught (catch) within PHP.

PHP Error Handling
php 14-Sep-2011
PHP Error Handling

The default error handling in PHP is very simple. An error message with filename, line number and a message describing the error are sent to the browser. Error handling is an important part of a web application development.

PHP Cookies
php 14-Sep-2011
PHP Cookies

Cookies are a mechanism for storing data in the remote browser and thus tracking or identifying return users. I.e. a cookie is often used to identify a user. A cookie is a small file that the server embeds on the user's computer.

File Handling in PHP
php 13-Sep-2011
File Handling in PHP

In this article I intend to learn basic file handling mechanism of PHP. File handling functions in PHP are extremely useful and userfriendly.PHP includes a lot of built-in functions for handling files and directories.

Include and Require function in PHP
php 13-Sep-2011
Include and Require function in PHP

Before discussing about include () and require () function in PHP first we will described what is Server Side Includes (SSI)? Server Side Includes (SS

PHP Date() Function
php 12-Sep-2011
PHP Date() Function

PHP date () function is used for retrieving the current date and time from the server, you can used ‘date’ function to set the format of date and time with many different ways.

PHP User Defined Functions
php 11-Sep-2011
PHP User Defined Functions

In this article I will show you how to create your own function. To keep the script from being executed when the page loads, you can put it into a function.

PHP $_Get Function
php 09-Sep-2011
PHP $_Get Function

In this article I will be described, how to use $_Get function in PHP. In PHP, two function are available $_Get () and $_Post () for passing values from one page to another page,