RE: [PHP] updating sub-request parameters

2010-11-02 Thread admin
u can create $_GET variables like so. $_GET['moo_cow'] = mysql_real_escape_string($_GET['param1']); } I hope I have answered your question. Richard L. Buskirk -Original Message- From: Daniela Floroiu [mailto:dani.flor...@googlemail.com] Sent: Monday, Nove

Re: [PHP] updating sub-request parameters

2010-11-02 Thread Tamara Temple
On Nov 1, 2010, at 9:21 AM, Daniela Floroiu wrote: hi, I need to make an apache sub-request like: virtual('.../script.php?param1=val1¶m2=val2...'); where the parameters are different from the parameters of the original request. I tried to set param1 and param2 in $_GET, $_REQUEST, $_SERVE

[PHP] updating sub-request parameters

2010-11-01 Thread Daniela Floroiu
hi, I need to make an apache sub-request like: virtual('.../script.php?param1=val1¶m2=val2...'); where the parameters are different from the parameters of the original request. I tried to set param1 and param2 in $_GET, $_REQUEST, $_SERVER['QUERY_STRING'] but without success: what script.php