[thelist] Can't submit form data with 'enter' key in IE

Christian Heilmann codepo8 at gmail.com
Wed Mar 8 14:18:51 CST 2006


> I originally used POST, but to make the pager routine to work I had to use
> this:
>
> $recordstart = (isset($_GET['recordstart'])) ? $_GET['recordstart'] : 0;
>
> In order to make this to work I had to change POST to GET. It seems POST and
> GET will not coexist in the same php script, at least in this case.

They do, just use the get variables in the form action...

<form action="bla.php?foo=<?php echo stripslashes($foo);?>" method="post">

--
Chris Heilmann
Blog: http://www.wait-till-i.com
Writing: http://icant.co.uk/
Binaries: http://www.onlinetools.org/



More information about the thelist mailing list