Mail in PHP PHP comes with a default function mail() that allows you to send mail directly from a PHP script. Mail function present in […]
Read MoreBlog
Handling database in PHP
Creating database connection PHP provides mysql_connect function to open a database connection. Handling database in PHP connection mysql_connect(server,user,passwd,new_link,client_flag); server : Optional , The host name […]
Read MoreSession Handling in PHP
What is session ? A normal HTML website will not pass data from one page to another. In other words, all information is forgotten when […]
Read MoreInheritance in PHP
What is Inheritance ? Inheritance is one of the popularly used Object Oriented Programming features. It allows having shared properties and functions between related classes. […]
Read MoreDynamic Menu in PHP
Steps to creating menu using array in PHP Step 1 : Create the array for menu A menu consist of choices where each choice has […]
Read More