Split testing software and nested php

Status
Not open for further replies.

Jon12345

New member
Sep 14, 2006
187
0
0
Brighton, UK
Lots of these split testing software programs seem to use php/mysql. Problem I've got is that I want to test two versions of a page that has lots of php within it. So if I place their php tag to flipflop the two different pages, the code would break because there would be nested php.

Any ideas of a solution?

Thanks,

Jon
 


you could use

include('file1.php);
and
include('file2.php');

after all of the split testing stuff so that it loads whichever page based on what the splittester decides.
 
If I could use that in some combination with a split testing software, that would be great. I say that because I need a system whereby it checks your ip address and places a cookie so you get to see the same page, no matter how many times you come back or if you navigate to another page on the website and come back.

Anyone done this before?
 
Status
Not open for further replies.