I'm trying to get my PC set up to do PHP again, but i'm having a problem with the configuration. phpmyadmin works on my PC fine, but "hello world" doesn't. I'm using Php 4.4.2 on Win XP Pro, using php designer 2006 beta.
With this source
<html>
<head>
<title>PHP Test</title>
</head>
<body>
<?php echo '<p>Hello There World</p>'; ?>
</body>
</html>
I'm getting this output on my PC
Hello There World
'; ?>
This even more basic version version does something similar on my PC, but again works perfectly on unix
<?php
echo '<p>Hello There World</p>';
?>
Hello There World
'; ?>
Any ideas why it's doing this? It works fine on my unix server, so it's something to do with my windows config :queasy: 😕