Instructions: Go ahead and echo
a string of your choice on line 8. Try out the concatenation operator if you're feeling bold!
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<p>
<?php
echo "Just " . "another" . " string";
?>
</p>
</body>
</html>
<html>
<head>
</head>
<body>
<p>
<?php
echo "Just " . "another" . " string";
?>
</p>
</body>
</html>
No comments:
Post a Comment