Php Problem maybe php.ini ?
I posted this question but i edited because i figured it out :)
I installed php5, apache and mysql in my xp machine
anyways for about 6 hours i tried to fugure out why it would pass anywariables like http://www.somewhere.com?variable=123456
it just would pass them
anyways the problem was my php.ini
i had to do "register_globals=on" how ever it doesnt seem to work on firefox only IE :(
Re: Php Problem maybe php.ini ?
Regiser globals should be left off and you should use the $_GET and $_POST arrays instead.
PHP Code:
$variable = $_GET['varname'];