our approach
|
contact us
PHP Basics In Pictures
Basics
Variables
Numbers
User functions
Logic & Loops
Files
Employ single variables
Assign a number to a variable
Open the text editor, then create a new script with this code:
<?php
$cars_on_lot = 100;
print "<p>Welcome to <b>ACME AUTO!</b></p>";
print "<p>Which one of our $cars_on_lot cars is right for you?</p>";
?>
<< BACK
NEXT >>