andrewandrewandrew Posted September 23, 2009 Share Posted September 23, 2009 Hi I have a URL with changing parameters in the URL line e.g. MyURL.com/wrapper.php?First=1&Last=2 How do I pass these URL parameters ( everything after the ? ) into a simple PHP wrapper script which simply Launches another web application with these EXACT same parameters so the Target may look like MyURL.com/source.php?First=1&Last=2 I am new to PHP so please do not make assumptions that I know obvious things Many Thanks Andrew Link to comment https://forums.phpfreaks.com/topic/175255-php-wrapper/ Share on other sites More sharing options...
nuttycoder Posted September 23, 2009 Share Posted September 23, 2009 on the page the link goes to the parameters can be taken using $_GET like this: $first = $_GET['First']; $last = $_GET['Last']; Link to comment https://forums.phpfreaks.com/topic/175255-php-wrapper/#findComment-923661 Share on other sites More sharing options...
andrewandrewandrew Posted September 23, 2009 Author Share Posted September 23, 2009 Thank you ever so much Excellent!!!! Link to comment https://forums.phpfreaks.com/topic/175255-php-wrapper/#findComment-923677 Share on other sites More sharing options...
nuttycoder Posted September 23, 2009 Share Posted September 23, 2009 your welcome Link to comment https://forums.phpfreaks.com/topic/175255-php-wrapper/#findComment-923684 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.