Php Tutorials


What is PHP 

PHP stands for PHP Hypertext Preprocessor.
PHP is an effective tool for building dynamic and interactive Websites.

PHP is the widely-used, costless, and effective alternative to rivals such as Microsoft's ASP.

Php is a server side scripting .

PHP can be used on all major operating systems, which includes Linux, many Unix variants , Microsoft Windows, Mac OS X, RISC OS, and many others.  ...  more

File Upload Using Php 

An basic problem faced by PHP coders is how can visitor upload a file to the site.  In this tutorial we will teach you how to accept file uploads from your web site visitors.
Before you can apply PHP to manage your file uploads, let's write an HTML form that allows users to selec...  more

Php Basic Syntax 

Php Basic Syntax

All php script should start with <?php and ends with ?> , On Servers that have shorthand support enabled you can also use <? and ?> .

Now most of the servers have shorthand support, Please check with your hosting provider before you use shorthand Php syntax.

Php Files
All php script files should ends with .php extension ,

PHP Echo and Print:
To output any data to the user there are two commands that can be used
echo & print...  more

Php Mysql Database 


Prior to  begin making your PHP Mysql database scripts, you must have a Mysql database to place information into and interpret it from. In this tutorial we will show you how to use Mysql database.

Database building

MySQL databases possess a standard setup. Database, which is comprised of tables. Each of these tables is quite separate and may hold dissimilar or different fields and so on. even although they are part of same database. Each table holds records which is compri...  more