I am using codeigniter and looking for integration of Skrill payment gateway but didn't get exact information from anywhere. I have already follow steps from example but it's not going to redirect on my status-url (outside of CodeIgniter).
I have tried one another example with below code but it's also not working
$config['pay_to_email']="abcdef@gmail.com";
$config ['status_url'] = 'http://myserver/response.php';
$config ['language'] = 'EN';
$config ['amount'] = '1';
$config ['currency'] = 'USD';
$config ['return_url_text'] = 'Return to response.php';
$config ['return_url'] = 'http://myserver/response.php';
$config ['cancel_url'] = 'http://myserver/response.php';
$config ['detail1_description'] = 'Membership';
$url='https://www.moneybookers.com/app/payment.pl?';
$vars=http_build_query($config);
header('LOCATION:' . $url. $vars);
If I run above file on server then also it's not working as well as not redirect to response.php.