I all,
I have small problem. I must allways use http_get_var to retrieve value in php. I heart that it exist a paramater to avoid that ? I'm in php 4, someone kown this param ?
Thanks
Do you mean to retrieve the variables passed in the url? Those can be accessed directly in your scripts. Example:
if your url is: http://www.phpbuilder.com/forum/read.php3?num=2&id=184006&loc=0&thread=184006
Then your script will already have these defined: $num = 2; $id = 184006; $loc = 0; $thread = 184006;