Problems with PHP???
---------------------
test.php:
<HTML>
<HEAD>
<TITLE>My first PHP</TITLE>
</HEAD>
<BODY bgcolor="white">
<?php
echo "<P>Hello, this is a test</P>";
echo $brick;
echo "<P>and another test</P>";
?>
</BODY>
</HTML>
--------------------------------------------
with zymic it doesn't work:
http://ville.99k.org/test.php?brick=test123
Result:
Hello, this is a test
and another test
---------------------------------------------
with this site it does work:
http://ville.vi.ohost.de/test.php?brick=test123
Result:
Hello, this is a test
test123
and another test