Hello.
Why I'm pass parameter by use include() function not work? It's have error "file not found". In manual of php write work.
Example : include ("http://someserver/file.php?varone=1&vartwo=2");
just set the vars before .. you cant pass in them
eg $var1= 1; $var2 = 2; include ("http://someserver/file.php");
this will work
Al