home / developersection / category
‘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
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
MySQL is an open source database server. MySQL Database powers the most demanding Web, E-commerce and Online Transaction Processing (OLTP) applications.
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 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.
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.
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.
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.
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 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.
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.
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,