WA
12-04-2002, 01:51 AM
I'm curious, is it not possible to submit a form using "method=post" while passing a query string to the URL at the same time? For example, lets say I have the following form:
<form action="<?=$PHP_SELF . "?apples=1?>" method="post">
<textarea name="mytextarea">Some data here</textarea>
<form>
If I submit the form, while I can retrieve $apples (1), attempting to retrieve $mytextarea returns variable not found. Is it not possible to add a query string to the form's action while using post at the same time?
Thanks,
<form action="<?=$PHP_SELF . "?apples=1?>" method="post">
<textarea name="mytextarea">Some data here</textarea>
<form>
If I submit the form, while I can retrieve $apples (1), attempting to retrieve $mytextarea returns variable not found. Is it not possible to add a query string to the form's action while using post at the same time?
Thanks,