I've got a URL that changes due to get statements, but the basic URL always remains the same. And I've got a form that submits with the action sending it back to itself (so I can process the queries on the same page).
My problem is that if my URL is, for example, page.php?act=1
And then I have a link that submits a form on that page, directed back to itself, with another get statement. Problem is, on submission, I go to page.php?ba=1 when I really want to be at page.php?act=1&ba=1
So basically, I want the form action to be the complete URL when the page loads. How do i do that?
Bookmarks