I am using this to allow a page to 'return to top' by clicking a link.
It was working and now it isn't. I wonder if someone can help me?
This is the first lot of
php
<?
php
$VegetableReturn = <<<VEG
<tr class="PlainLink">
<td></td>
<td>
<a href="#Vegetables">
<img src="Images/veg/47270289.jpg" alt=""
style="float: left; margin: 10px;">
<br><small>Top of<br>Vegetables</small>
</a>
</td>
<td></td>
</tr>\n
VEG;
$FruitReturn = <<<FRUIT
<tr class="PlainLink">
<td></td>
<td>
<a href="#Fruit">
<img src="Images/veg/47270289.jpg" alt=""
style="float: left; margin: 10px;">
<br><small>Top of<br>Fruit</small>
</a>
</td>
<td></td>
</tr>\n
FRUIT;
?>
This is the php that is spread intermittently through out the page.
<?php print($VegetableReturn); ?>