up vote 0 down vote favorite
share [g+] share [fb]

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.

link|improve this question

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

2 Answers

up vote 3 down vote accepted
<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|improve this answer
Well . . . now I feel even more foolish. – Eric Wilson Sep 11 '09 at 18:39
feedback

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|improve this answer
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 '09 at 20:47
@bobince: Thanks, I fixed it. – Bruce Alderman Sep 12 '09 at 1:32
feedback

Your Answer

 
or
required, but never shown

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