I am using WAMP to run a local PHP/Apache server. I'm trying multiple approaches to echo lines using HTML tags but the site breaks. Here is my code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<?php
$name = 'John';
$months = array('January', 'February', 'March');
echo "<p>$name;</p>";
?>
<p><?php echo "Hello World!";?></p>
<p><?php echo "My name is " . $name . ", nice to meet you.";?></p>
<?php
echo "<p>Hi again, my name is " . $name . ".</p>";
?>
<?php
foreach ($months as $current_month) {
echo "<li>$current_month</li>";
}
?>
</body>
</html>
The browser output is
$name;
"; ?>
Hi again, my name is " . $name . ".
"; ?>
I also tried putting the php code above the Doctype but the site breaks again.
Thank you.
<?php echo "Hello, World!" ?>if that does not work properly, your Apache setup is wrong. – donutdan4114 Sep 19 '12 at 2:26