pmcmicha
Technical User
- May 25, 2000
- 353
I am just starting with php, but I have been unable to find a solution. I have a simple html page with php.
While the echo is displayed, I am also getting the following on the page:
"; ?>
When I view the page source, the php section is highlighted in pink up to the first quote. After that, it all goes to black text.
Code:
<html>
<head>
<style type="text/css">
@import url(file);
</style>
<title>Page</title>
</head>
<body>
Text here.
<hr>
<?php
echo "Hello World!";
?>
<hr>
</body>
</html>
While the echo is displayed, I am also getting the following on the page:
"; ?>
When I view the page source, the php section is highlighted in pink up to the first quote. After that, it all goes to black text.