I'm just trying to get this software working properly.
It's called Split Test Accelerator,which allows multivariate testing on my webpage.
After adding the variables of things I want to test in the admin area, it asked me to post these codes into my webpage.
It doesnt work. I don't understand why.<?php if ($f[1]==1){echo $code[1];}?>
<?php if ($f[1]==2){echo $code[2];}?>
<?php if ($f[1]==3){echo $code[3];}?>
<?php if ($f[1]==4){echo $code[4];}?>
<?php if ($f[1]==5){echo $code[5];}?>
<?php if ($f[1]==6){echo $code[6];}?>
I've already added the code in .htaccess so my server is able to parse php in html files.
I tried my webpage with the most basic echo "Hello World" and it works fine.
Or is there something wrong with the code above?