this thread is a bump of an older thread: http://www.wickedfire.com/design-development/76462-simple-job-geo-redirect-prosper202.html
so heres my question:
does anyone know how to move over the keyword to the redirected domains? i want to move my prosper202 keywords over to the geoplugin pages.
so for example:
blabla.com/redir.php?t202kw=keyword
and now i want the keyword automatic appear at the end of the other links
for example: http://xxx.com/united-states?t202kw=keyword');
but what should i insert at the end of the geo domains. i tested different things but nothing worked so far.
heres the code again:
<?php
//country code redirect
require_once('geoplugin.class.php');
$geoplugin = new geoPlugin();
$country_code = $geoplugin->countryCode;
switch($country_code) {
case 'US':
header('Location: http://xxx.com/united-states');
exit;
case 'UK':
header('Location: http://xxx.com/united-kingdom');
exit;
default: // exceptions
header('Location: http://xxx.com/generic');
exit;
}
?>
what should i insert at the end of http://xxx.com/united-states'); for example in order to get the keyword of my first link (blabla.com/redir.php?t202kw=keyword) handed over to my geo links ( http://xxx.com/united-states');)
so heres my question:
does anyone know how to move over the keyword to the redirected domains? i want to move my prosper202 keywords over to the geoplugin pages.
so for example:
blabla.com/redir.php?t202kw=keyword
and now i want the keyword automatic appear at the end of the other links
for example: http://xxx.com/united-states?t202kw=keyword');
but what should i insert at the end of the geo domains. i tested different things but nothing worked so far.
heres the code again:
<?php
//country code redirect
require_once('geoplugin.class.php');
$geoplugin = new geoPlugin();
$country_code = $geoplugin->countryCode;
switch($country_code) {
case 'US':
header('Location: http://xxx.com/united-states');
exit;
case 'UK':
header('Location: http://xxx.com/united-kingdom');
exit;
default: // exceptions
header('Location: http://xxx.com/generic');
exit;
}
?>
what should i insert at the end of http://xxx.com/united-states'); for example in order to get the keyword of my first link (blabla.com/redir.php?t202kw=keyword) handed over to my geo links ( http://xxx.com/united-states');)