What needs to be corrected in this PHP?

Jess

New member
i am trying to figure out what needs to be fixed in this PHP script:

<?php
print "<span style=\"font-weight: bold;\">Hello, world!</span>";
?>
 
Nothing ... you could use the print command or echo command to achieve the same effect.

Are you getting a particular error with that line? If you are it could be caused by another line of code ... not that one.
 
print = with parentheses
print ("<span style=\"font-weight: bold;\">Hello, world!</span>");

or

echo = without parentheses
echo "<span style=\"font-weight: bold;\">Hello, world!</span>";
 
Back
Top