Hi - I've got a couple of LPs and I am rotating 6 offers on them - on my LPs i have the resize window script so that the offer opens up in full window when they click through from my LP.
However, I cant figure out how to put this piece of php code into the script because its not a php/html page as such - its the offer rotating code - this is it: <?php print getOffer(0); ?>
-------------------------------
<script language="JavaScript">
<!--
function movesizeandopen()
{
self.moveTo(0,0)
self.resizeTo(screen.width,screen.height)
window.location.href = "";
}
-->
</script>
<a href="javascript
:movesizeandopen();"><img src="images/image.gif" border="0" alt="Click Here" width="745" height="360" /></a>
-------------------------------
I tried putting this code between the quotes on the window.location.href line but that doesn't work as that needs a specific URL, so I need to figure out how to do this, or do it some other way - all help appreciated.