Right now, I'm running traffic from a camp in Facebook to a campaign I've set up in CPV Lab. I'd like to split traffic (weighted if possible) to 2 different CPV Lab campaigns in my php file. Is there a way to do this within this php file?
<?php
global $params;
$offers = array(
'uk-f' => "https://mydomain.com/cpv-lab/base.php?c=185&key=blahblah&kw=" . $_GET['kw'],
'uk-f-2' => "https://mydomain.com/cpv-lab/base.php?c=185&key=blahblah2&kw=" . $_GET['kw'],
);
$cloaked = array(
'uk-f' => 'https://mydomain.com/cpv-lab/base.php?c=325&key=blahblah&kw=',
'uk-f-2' => 'https://mydomain.com/cpv-lab/base.php?c=325&key=blahblah2&kw=',
);
?>
Why not just split test the offers directly in CPV lab?
I don't use CPVlab, but can you not insert a conversion value dynamically into a pixel?