Re: [PHP] Retransmiting post variables

2006-12-15 Thread Richard Lynch
On Tue, December 12, 2006 9:45 am, Fernando M. M. wrote: > I have a script called redir.php that is used only for redirecting > using the following code: > > header('Location: ', $_GET['url']); So, you have a one-line script do accomplish a one-line task? Okay. > But > now i need to redirect

Re: [PHP] Retransmiting post variables

2006-12-12 Thread Chris
Fernando M. M. wrote: Hello, I have a script called redir.php that is used only for redirecting using the following code: header('Location: ', $_GET['url']); But now i need to redirect post varibles too. Example: If someone access redir.php?url=my_page.php and post: &a=1&b=2 I need to send

[PHP] Retransmiting post variables

2006-12-12 Thread Fernando M. M.
Hello, I have a script called redir.php that is used only for redirecting using the following code: header('Location: ', $_GET['url']); But now i need to redirect post varibles too. Example: If someone access redir.php?url=my_page.php and post: &a=1&b=2 I need to send this post string (as p