Functions Php

    $cars = 10; 
    print "We have $cars cars.\n
"; 
    print "We got another new car.\n
"; 
    $cars++; 
    print "Now we have $cars cars!\n

"; 
    print '$cars++ is the same to PHP as $cars + 1.'; 
?>