hello all,
I am using php3 PHPlib and code is below.
The problem is that if I use POST, the variable doesn't show up, but if I use GET, it works fine.
But I have to use post....
Do you have any other solution for this?????
I need your help..
---test.html
<FORM METHOD=POST ACTION="action.php">
<INPUT TYPE="hidden" name="go" value="on">
<INPUT TYPE="submit">
</FORM>
---action.php
<?
include_once(PHPLIB_DIR."/prepend.php3");
page_open(array("sess" => "Test_Session"));
echo "go: ".$go;
page_close();
?>