I am completely new to PHP and am doing online tutorials to learn. In this code:
<?php
$cars_on_lot = 10;
print "We have $cars_on_lot cars.\n
";
print "We got another new car.\n
";
$cars_on_lot++;
print "Now we have $cars_on_lot cars!\n<p>";
print '<b>$cars_on_lot++</b> is the same to PHP as <b>$cars_on_lot + 1.</b>';
?>
What does the "\n" mean?
This tutorial just all the sudden started using them without saying what the do-if anything...thanks!
Joel