Problem with html 'post' button in a table, using PHP

mwenz24

New Member
I am relatively new to html and PHP, and have a problem which I can't seem to get around.Basically, I have a table and want to have within one of the cells a submit button that will take the user to another page where they can edit that row.I have all of the machinery for this in place, apart from the fact that I can't get the button to send the user to the new page, it just posts the variable to the same page.The relevant code is:\[code\] if ($Started==0){ $TABLE.="<td align='center' width=220><font size='2'>Evaluation not yet available.<br><br>"; $TABLE.="<form action='request.php' method='post' style='margin:6; text-align:center;'><INPUT TYPE='submit' NAME='toedit' VALUE='http://stackoverflow.com/questions/3643531/Edit'></FORM>"; } \[/code\]Where request.php is another page (which is working, and another form button (a link) works fine with this button. On submitting, however, the page with the submit button reloads with the extra text:
\[code\]?Run_form_in=420&toedit=Edit\[/code\] in the address.Started is just a condition set at either 0 or 1, and works fine.Thanks in advance!
 
Back
Top