Hello all...

How would I set up a href on something that needs to include information. For instance, when you click the link, I want the client to go to a certain page where the County is the County they picked and the State is the State they picked. How would I go about that?

<a href="www.thispage.com" county=Chaffee state=Colorado> Chaffee </a>

How would I make this work?

Thanks bunches,
~Amy

Recommended Answers

All 4 Replies

A good way would be to include the parameters in the query string

<a href="www.thispage.com?county=Chaffee&state=Colorado"> Chaffee </a>

or create sessions variables of county and state and then access them on the page you want to show info. Or else use the method of dickersonka

Awesome...thanks everyone!
~Amy

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.