In a linux environment, running a script like this:
http://localhost/echo.php?echothis=HELLO
// begin echo.php
<?
echo $echothis;
?>
// end
Would always output "HELLO" in the browser, but in my Windows installation of apache and php, it outputs nothing, meaning that the variable $echothis is EMPTY. Do I not have something setup right in either apache or php as to why this is happening, or is this just not possible in Windows? I appreciate your help! Thanks!