I am trying to use an HTML form to submit the url index.php?page1&name2=value2&name3=Value3
. The closest I've come is index.php?page1=&name2=value2...
I can't figure out how to get a clean page1
and I'm certain there's a simple answer. I'm not sure where to search but the MVC pattern I implemented (John Squibb's) assumes that format, I have to assume it's possible. Any information is appreciated.
What I have so far:
<form id="page1" action="index.php" method="get">
<input type="hidden" name="page1"/>
...