Quantcast
Channel: PHP Tutorials
Browsing latest articles
Browse All 10 View Live

PHP Secure E-mail tutorial

There is problem in PHP email script which we describe in previous chapter. first look at the previous example: <?php$ to = “dhruv_person@mail.com”;$subject = “Daily report”;$message = “This is PHP...

View Article



PHP Error Tutorials

PHP errors are of various kinds. There are basically three types of run time errors: Notices: These are non-critical errors which PHP encounters while running a script. For example, a variable...

View Article

PHP Exception Tutorial

Exceptions are used to change the normal flow of a script if a specified error occurs. The purpose of exception handling mechanism is to provide means to detect and report on “exception circumstances”...

View Article

PHP Regular Expression Tutorial

A Regular Expression is a string used to describe parse or search text within a string, according to certain syntax rules Example: “Bill| William”: matches a string that has either “Bill” or “William...

View Article

PHP and MySQL tutorial

As you already gone through a mysql tutorial in which you has learn and understand  all about mysql and its database. Now you will learn connection between PHP and MYSQL. PHP provides built in database...

View Article


PHP Object Oriented Tutorial

Classes in PHP behave much like object oriented classes in other languages. Object are created using a constructor In PHP 4 the constructor was given the same name as the class In PHP 5 you can still...

View Article

PHP Filter Tutorial

PHP filters are used to validate and filter information coming from insecure sources, like user input. You can use various function to filter a variable. filter_var() – It is used to filter a single...

View Article

PHP and XML Tutorial

Extensible Markup Language (XML) is a “Markup language” that defines a set of rules for encoding documents in a format that is both human-readable and  machine-readable. XML declaration: XML documents...

View Article


XML SimpleXML Tutorial

PHP simple XML handles the foremost common XML task and leaves the remainder for alternative extensions. SimpleXML  is fast and easy to use when performing task. For example reading data from XML files...

View Article


PHP for C Developer Tutorial

Much of the syntax of PHP is borred from C. So syntax of statements and function definitions should be same for both, except that variables are always declare by $, and functions do not require...

View Article
Browsing latest articles
Browse All 10 View Live




Latest Images