This is a discussion on RE: [PHP] _GET question within the PHP General forums, part of the PHP Programming Forums category; Pushpinder Singh Garcha <mailto:pgarcha@adelphia.net> on Friday, August 01, 2003 11:11 AM said: > <...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Pushpinder Singh Garcha <mailto:pgarcha@adelphia.net>
on Friday, August 01, 2003 11:11 AM said: > <form name="form1" method="post" > action="full_profile_1.php?val=$company"> Use a hidden form element instead. <input type="hidden" name="val" value="$company"/> > Can some one tell me if the action parameter of the form is correct ? > Since in the first part of the if() statement when I try to retrieve > the value of $_GET['val'] I do not get anything. 1. As an experiment did you try $_POST[]? 2. Making the above change (using input type="hidden") might solve your problem. hth, Chris. |