I know the subject is a bit confusing, but I really need to know if
this is possible.
I've got a php page. Let's call that a.php In a.php, I make a call to
a webpage (b.php), with some arguments
(http://domain.com/b.php?abcd=1234&efgh=5678).
Can I do something like this:
http://domain.com/a.php?argument='abcd=1234&efgh=5678', then from a.php
use $_GET['argument'] to use in the creation of the URL to call b.php?
In other words, I want to include a php argument in a php argument.
Is this possible?
I'd prefer not to use seperate variables (i.e.
http://domain.com/a.php?abcd=1234&efgh=5678) to forward it to b.php,
but if it's not possible, I guess I'll have to.
Thanks,
iw****@gmail.com