Can you tell me what is wrong, code is from one PHP learning site and output
is wrong. Screenshot is here
http://img177.imageshack.us/img177/2875/capturetr6.jpg
This is the code:
<html>
<head></head>
<body>
Agent: So who do you think you are, anyhow?
<br />
<?php
// define variables
$name = "Neo";
$rank = "Anomaly";
$serialNumber = 1;
// print output
echo "Neo: I am <b>$name</b>, the <b>$rank</b>. You can call me by my serial
number, <b>$serialNumber</b>.";
?>
</body>
</html>