Hi,
I am creating a new navigation system for a website that uses pop-out menue's (which work fine). What i want to do is give the user a choice of contact methods:
phone
email
post
Instead of directing to another page, i wanted to just display the required method in a table/div etc within the current page.
So can i put the hyperlink value for 'telephone' into a the php variable $_GET to then echo the required method which i will store in a variable?
I expect this couold be done with javascript but i know even less of that than PHP!!
CODE
<ul>
<li><a href="???" id="c1" name="Telephone" title="By Telephone">By Telephone</a>
<li><a href="???" id="c2" name="email" title="By Email">By Email</a>
<li><a href="???" id="c3" name="post" title="By Post">By Post</a>
</li>