Posted by on .

Introduction To JAVA

Java ArchitectureIntroduction To JAVA – Java is a near about to fully object oriented programming language, Java was developed by “James Goslin” in 1991 at “Sun Microsystems Inc” .Java technology’s versatility, efficiency, platform portability and security makes it the ideal technology for network computing.

Few facts about Java technology

  • More than 2 billion desktops run java.
  • 1000 Million JRE Downloads each year.
  • more than 4 billion mobiles run java.
  • 2 billion java cards manufactured every year. More
Posted by on .

Php Variables

PHP VariablesFor any programming language variables are act as and storing unit / container that stores some information.Php variables always starts with the dollar ($) symbol and followed by the variable name, actually $ symbol represents the preprocessor.These Variable contains the value of its latest last assignment and will be updated if any new assignment occurred.
Php Variables can be declare as follows ” $variable_name “.

Php Variables naming conventios

  • A php variable must only starts with a letter or underscore (eg.$ _phpvariable , $phpvariable).
  • A php variable can only contains alphabets, numeric characters and underscores. (eg. $php_variable , $php011). More
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