Posted by on .

Php Comments

PHP Comments

In any programming language it may be php, java, html or any other programming language, commenting is the most basic requirement to optimize your code for future use.Comments in between your code not only make this snippet understandable to you but also may help others to understand your code .If after an year you needs to edit in your code then only comments can give you the same thinking as you had when you code this before an year.
Comments are very good practice during your code it can reduce your maintenance efforts. Php supports mainly two type of comments.

  1. Single Line Comment
  2. Multi line comment More
Posted by on .

Basic Php Syntrax

basic php syntax

Before create first php syntax we have to understand about the php server configuration, The php server configuration can be shows by configuration page.

Configuratin page

Php provides a method that is  <?php phpinfo(); ?> , this method creates an html page that contains all the information about your php version that you have installed , how you have configure your php.ini file, what database you have and so many other information . More

Posted by on .

PHP Introduction

php-introductionPHP is created by Rasmus Lerdorf in 1995, and now Php is an world’s largest most popular server side scripting language. Php used to produce dynamic web pages Php is the first server side scripting language that can embedded into HTML document.

PHP Highlights:-

  • Php stands for : Hypertext Preprocessor or Personal Home Page.
  • Php is an server side scripting language.
  • Php can support almost all databases (Most of the developers prefer MySql).
  • Php is an open source software hence free to download.
  • Php not required any kind of liscence to use. More