vote up 0 vote down star

This is a simple HTML question, made more embarrassing (and harder to google) since I don't know the vocabulary.

I want to make a link that put additional information after the url:

www.example.com/page.html?variable=yes&page=5

How do I do this with a link? I know how to do it with a form.

flag

You want to pass GET variables? – chchrist Sep 11 at 18:31

2 Answers

vote up 3 vote down check
<a href='http://www.example.com/page.html?variable=yes&amp;page=5'>Click me!</a>

I suspect this isn't what you were after...

link|flag
Well . . . now I feel even more foolish. – FarmBoy Sep 11 at 18:39
vote up 1 vote down

The additional information after the question mark is called the query string. You can include the query string directly in your link:

<a href="http://www.example.com/page.html?variable=yes&amp;page=5">example</a>
link|flag
Ampersand should be escaped to be valid in an HTML attribute. You can get away with the mistake in browsers, but only for as long as the next parameter doesn't match an entity name. – bobince Sep 11 at 20:47
@bobince: Thanks, I fixed it. – aardvark Sep 12 at 1:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.