Now I'm hoping that someone here can help me.
I'm now diving feet first in to PPV and I want a way of inserting the target in to the landing page.
I know how to insert the whole target but I want a way of removing the ".com" etc.
eg. ?target=Domain.com -> and I only want to insert Domain on the landing page.
God I hope that makes sense.
Can anyone help?
Thanks
<?php
$pieces = explode(".", $_GET['target']);
echo $pieces[0];
?>
Thanks bluebox. I'll give it a go later and let you know how I get on.