When I'm trying to get the variables values, parsed from the HTML-file, by using the "?" and "&" - the values are NULL when I evaluate the variables in the PHP-file ??
What am I doing wrong ?
I'm using Apache 1.3.24, on Win2000, and IE55
The HTML-file :
<HTML>
<BODY>
<a href="download2.php?setw=a6f3d&threadid=10">How to download on line</a>
</BODY>
</HTML>
The PHP-file :
<?php
echo "var1=$setw var2=$threadid";
?>
I'd expect the output to be something like this :
var1=a6f3d var2=10
but gets this
var1= var2=
instead (?)
The thing is - when I'm trying it on the web-hotel - it works fine - sp something's wrong in my Apache webserver - but what ?
//Henrik