Wednesday, April 15, 2009

PHP Variable

PHP variable syntax $a , $b.

Not Different in this variable

example :

<?php

$a = 1;
$b = 2;

$c = $a + $b;

echo "$c";

?>

No comments:

Post a Comment