This is a discussion on "'Return to top' trouble?" within the PHP Forum section. This forum, and the thread "'Return to top' trouble? are both part of the Program Your Website category.
|
|
|
|
|
![]() |
||
'Return to top' trouble?
|
||
| Notices |
![]() |
|
|
LinkBack | Thread Tools |
|
|||
|
'Return to top' trouble?
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); ?> Last edited by Kymberly; Aug 2nd, 2006 at 10:25. |
|
|
|
|||
|
Re: 'Return to top' trouble?
If I understand you correctly, $VegetableReturn is what you are print around the page a a link back to the top. If so, this will never happen at the moment because this variable does not contain any html that a browser can interpit as a link. You need to have your variable contain something like:
Remember that any id can be used as an anchor. |
|
|||
|
Re: 'Return to top' trouble?
Thanks for that.
|
![]() |
| Tags |
| return, top, trouble |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| [SOLVED] Return column names in SQL using PHP | nate2099 | Databases | 7 | Dec 21st, 2007 14:57 |
| The Return of Basic HTML??? | ScottR | Webforumz Cafe | 0 | Aug 8th, 2007 13:38 |
| ASP ADO Connection to return XML from SQL Proc | NickyJ | Classic ASP | 2 | Aug 11th, 2005 11:39 |
| return from db | benbramz | Classic ASP | 5 | Jun 19th, 2005 18:29 |
| Return to previously viewed screen | Imara96 | Flash & Multimedia Forum | 5 | Apr 23rd, 2005 22:18 |