Instructions: On line 8 in between the <?php
and ?>
, use echo
to calculate 17 * 123
. Make sure to end your PHP code with a semicolon.
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<p>
<?php
echo 17*123;
?>
</p>
</body>
</html>
<html>
<head>
</head>
<body>
<p>
<?php
echo 17*123;
?>
</p>
</body>
</html>
No comments:
Post a Comment