You said yourself that you wanted to link to another part of the page.  So
does that mean a certain section of the current page or a section in a
different page?

Either way when linking to another page you link by doing this:

<a href="anotherpage.htm">

An anchor in the same page:

<a href="#anchorname">

An anchor in a different page:

<a href="anotherpage.htm#anchorname">

Just throw this into your php code.. whichever one you are going for.

Rick

It is very nearly impossible . . . to become an educated person in a country
so distrustful of the independent mind. - James Baldwin

> From: "Beauford.2002" <[EMAIL PROTECTED]>
> Date: Tue, 4 Mar 2003 20:21:05 -0500
> To: "Richard Baskett" <[EMAIL PROTECTED]>, "PHP General"
> <[EMAIL PROTECTED]>
> Subject: Re: [PHP] <A NAME= question
> 
> Thanks for the info, but the # is not used in this way from the information
> I have read.....
> 
> <a name="anchor_name"> . . . </a>
> Define a target location in a document
> <a href="#anchor_name"> . . . </a>
> Link to a location in the base document, which is the document containing
> the anchor tag itself, unless a base tag has been specified.
> 
> 
> ----- Original Message -----
> From: "Richard Baskett" <[EMAIL PROTECTED]>
> To: "PHP General" <[EMAIL PROTECTED]>
> Sent: Tuesday, March 04, 2003 5:29 PM
> Subject: Re: [PHP] <A NAME= question
> 
> 
>> for ($i = 1; $i < 6; $i++) {
>>   echo "<a name=\"#{$I}\">Destination</a>\n";
>> }
>> 
>> You forgot the # sign.
>> 
>> Cheers!
>> 
>> Rick
>> 
>> Happiness is not a destination. It is a method of life. - Burton Hills
>> 
>>> From: "Beauford.2002" <[EMAIL PROTECTED]>
>>> Date: Tue, 4 Mar 2003 17:21:20 -0500
>>> To: "HWG Basics" <[EMAIL PROTECTED]>
>>> Cc: "PHP General" <[EMAIL PROTECTED]>
>>> Subject: [PHP] <A NAME= question
>>> 
>>> Not sure if this is a PHP or HTML problem, so I have posted it to both
>>> lists. I have a table with with 5 itmes in which I want to click on and
> go
>>> to a different part of the page.
>>> 
>>> <TD><A HREF=#1>Click 1</A></TD>
>>> <TD><A HREF=#2>Click 2</A></TD>
>>> <TD><A HREF=#3>Click 3</A></TD>
>>> <TD><A HREF=#4>Click 4</A></TD>
>>> <TD><A HREF=#5>Click 5</A></TD>
>>> 
>>> Now this is where it gets interesting.
>>> 
>>> I have a PHP script which loops 5 times.
>>> 
>>> for ($i = 1; $i < 6; $i++) {
>>> 
>>>   <A NAME = $i >Destination</A>
>>> 
>>>   A bunch of of other code.....
>>> 
>>> }
>>> 
>>> When I look at the source from my browser everything looks the way it
> should
>>> be. I get <A NAME=1>, <A NAME=2>, etc. The problem is that when I click
> on
>>> the link it does nothing. I get the little click noise, but that's it.
>>> 
>>> Any ideas on this would be appreciated.
>>> 
>>> 
>>> 
>>> --
>>> PHP General Mailing List (http://www.php.net/)
>>> To unsubscribe, visit: http://www.php.net/unsub.php
>>> 
>>> 
>>> 
>> 
>> 
>> --
>> PHP General Mailing List (http://www.php.net/)
>> To unsubscribe, visit: http://www.php.net/unsub.php
>> 
>> 
> 
> 
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> 
> 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to