i am new to PHP, i typed in a hello world php program and opened it using the web browser, but the end tag "?>" is also getting displayed, could any one correct my code ...
<html>
<head>
<title>My First PHP Page</title>
</head>
<body>
<?php
echo <b>Hello World! </b>
?>
</body>
</html>
Hello World! ?>
<<-- this is the output that i get...