- Jun 16, 2010
- 991
- 130
We are trying to get the cookie information into the URL parameter. We are using this, but clearly this is not proper code.
<?php
header("Location: https://ourdomain.com/?c1=P1&flow=c...onv_s='+escape(convert.getCookie('_conv_s'));");
exit;
?>
How can we get the _conv_v and _conv_s cookie information into the url parameter?
<?php
header("Location: https://ourdomain.com/?c1=P1&flow=c...onv_s='+escape(convert.getCookie('_conv_s'));");
exit;
?>
How can we get the _conv_v and _conv_s cookie information into the url parameter?