Sunday, 22 June 2014

PHP Variables

  As with algebra, PHP variables can be used to hold values (x=5) or expressions (z=x+y).
  A variable can have a short name (like x and y) or a more descriptive name (age,  car_name,  total, volume).
  Rules for PHP variables:
  A variable starts with the $ sign, followed by the name of the variable
  A variable name must start with a letter or the underscore character
  A variable name cannot start with a number
  A variable name can only contain alpha-numeric characters and underscores (A-z, 0-9, and _ )
  Variable names are case sensitive ($y and $Y are two different variables)


Example:-

          $name="john";

In the above example, $name is a Variable.

Related Posts:

  • CSS Links & Pseudo Classes What is a pseudo-class? A pseudo-class allows you to take into account different conditions or events when defining a property for an HTML tag. Le… Read More
  • The Box Model The box model in CSS describes the boxes which are being generated for HTML-elements. The box model also contains detailed options regarding adjusti… Read More
  • Margin and padding Set the margin in an element An element has four sides: right, left, top and bottom. The margin is the distance from each side to the nei… Read More
  • CSS Borders Borders can be used for many things, for example as a decorative element or to underline a separation of two things. CSS gives you endless options w… Read More
  • Layer on layer with z-index (Layers) CSS operates in three dimensions - height, width and depth. In this lesson, we will learn how to let different elements become layers. In short, thi… Read More