Hi, I'm new to PHP and am wondering if there is a way to click on a hyperlink and have it send variables to its target URL? I guess this would be sort of instead of using a submit button, a little like an onclick event procedure.
if the values can be determined BEFORE the original page loads, you can just make your links look like this:
http://www.mypage.com?variableA=valueA&variableB=valueB
if you want the values determined AFTER the page loads, you would need to use javascript to do that.
Awesome! Worked like a charm. Thanks a million, I've been stewing on this for a week.
-Larry