Hello David
I'm trying to add jump to the top of my page to send people to the price table which is below the crease of the page.
Can you please xplain how to do this.
I'm currently trying the following code (needs to be within the with statement) but its coming back with an error statement.
Can you help?
<?php if ($min <> 9999)
{
print $description;
print "<a href="#prices">See price table</a>";
}
?>
Thanks
Mally
Hi Mally,
It's the double-quotes in your A tag breaking the string. Using single quotes will work fine:
print "<a href='#prices'>See price table</a>";
Cheers,
David.