I am fairly new to PHP, but I do have minor experience, not a ton but enough where I would think that I could write a simple variable declaration followed by echoing the variable.
Here is the code:
- Code: Select all
<html>
<head>
<title>Variables</title>
</head>
<body>
<?php
$cars = 2;
echo($cars);
?>
</body>
</html>
Thanks all! :-)


