I have this variable, formid, passed through a form into edit.php. The url comes up correctly with formid=1, but then there is this following it: " &submit=GO+%BB " and I don't know why. submit is the name of my submit button. I tried changing all of it around, but it still shows up in my url and I don't know why.
Part in my edit.php where I get the id:
$id=($_GET['id']);
My form:
<form name="idedit" method="get" action="_edit.php">
<input name="id" type="text" value="" class="ibox2"><input type="submit" value="GO »" name="submit" class="subbox">
I had this problem earlier and I had fixed it by changing the name of my input box for the id, but when I tried changing it back the way I had it, it didn't work again.
Any help would be great. Thank you.