Hey guys,
I'm doing pof right now and have uploaded a landing page, but I want to test different headlines on the landing page. If the site is located in a folder with one index.php file, what do I have to do for multiple headlines? Do I just copy the folder and then change the index.php file over and over again?
thanks,
slade
I think the easiest way (someone else might have a better one) is to make two versions of the LP, one with each headline and name them index.php and index2.php or whatever. Then use this code to rotate between the two. Just copy and paste this into a php file in your server, then have your banners link to it. It will rotate the two LPs. I'm not really a techie, so like I said, someone else might have a better way, but this works for me.
<?php
$random = rand(1, 2);
if ($random=='1') {
header('Location: http://www.landingpage-1.com/');
} else {
header('Location: http://www.landingpage-2.com/');
}
?>
@slade: Do you not use Tracking Software? You can rotate landers and offers from there?
ya thanks andy...I use cpvlab and they helped me with it...didn't realize how easy it was 
You are welcome! I am swapping to CPVLab as they can handle multiple offers per landing page and a sales funnel!