Learning PHP and MySQL

Example 03-06 Reassigning a variable

<?php
$age  
=  30;
$age  =  31;
echo  
$age;
?>

Posted by on 08/09 at 03:25 PM

Next entry: Example 05-09 Using include_once to include a file

Previous entry: Example 03-04 The HTML markup produced by the PHP code

<< Back to main