How can I make a dynamic anchor?
I have this table in my database;
----------------------------------------------
: **id** : **Names** :
----------------------------------------------
: 1 : Name1, Name2, Name3 :
----------------------------------------------
I return it to my page and what I want to do is when I click in one of the name I want to change the link id.
For example when I clicked Name1 my anchor should be
<a href="http://name.com?id=name1">
and when I click Name2
<a href="http://name.com?id=name2">
and so on.
How can I possibly do this?
Thanks!