Couple of simple q's

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
mjseaden
Forum Contributor
Posts: 458
Joined: Wed Mar 17, 2004 5:49 am

Couple of simple q's

Post by mjseaden »

Dear All

Can you tell me what parameter I use in <A .. ></A> to bring up the text in the status bar of the browser explaining what it links to, rather than giving just the plain URL.

Also, when I am populating a textbox with a large numeric value, it is giving the scientific form e.g. 1.5e6. I want 1500000. What function/method do I use to 'echo' in this format?

Many thanks

Mark
qads
DevNet Resident
Posts: 1199
Joined: Tue Apr 23, 2002 10:02 am
Location: Brisbane

Post by qads »

first question is not php, its client side :roll:

http://www.psacake.com/web/ep.asp
mjseaden
Forum Contributor
Posts: 458
Joined: Wed Mar 17, 2004 5:49 am

Post by mjseaden »

How do I label parts of my HTML code such that I can say http://mydomain.com/mypage#mylabel?

What's the label syntax?

Cheers

Mark
User avatar
markl999
DevNet Resident
Posts: 1972
Joined: Thu Oct 16, 2003 5:49 pm
Location: Manchester (UK)

Post by markl999 »

<a name="mylabel">whatever</a>
mjseaden
Forum Contributor
Posts: 458
Joined: Wed Mar 17, 2004 5:49 am

Post by mjseaden »

Thanks
User avatar
tim
DevNet Resident
Posts: 1165
Joined: Thu Feb 12, 2004 7:19 pm
Location: ohio

Post by tim »

<A HREF="#tim">Jump to tim</A>

direct and label the call-to like so:

<A NAME="tim">
Post Reply