R
realtyonegroup
I have Expression Web and created a PHP page but it doesn't seem to be
displaying. I published it at:
http://www.newhollandrochester.com/quotes.php
The code is just a test that I'm doing (I'm new to PHP):
<!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>Experimenting with quotes</title>
</head>
<body>
<?php
$name = 'David Powers';
echo 'Single quotes: The author is $name<br />';
echo "Double quotes: The author is $name";
?>
</body>
</html>
Can someone tell me why nothing is being displayed? Thanks
displaying. I published it at:
http://www.newhollandrochester.com/quotes.php
The code is just a test that I'm doing (I'm new to PHP):
<!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>Experimenting with quotes</title>
</head>
<body>
<?php
$name = 'David Powers';
echo 'Single quotes: The author is $name<br />';
echo "Double quotes: The author is $name";
?>
</body>
</html>
Can someone tell me why nothing is being displayed? Thanks