Posted by Ken Robinson on 11/19/23 11:45
mickey wrote:
> I have a form like the one below. Upon submit I would like to self post
> to the same page but have the original $_POST data( which was posted to
> this page from another ) also be sent along with the new form field
> data. How can I achieve that? Thanks.
You could use hidden fields to pass the data
>
>
> <form name="form1" method="post" action="<?php echo
> $_SERVER['PHP_SELF']."?".$_SERVER['QUERY_STRING']; ?>">
> <table>
> <tr>
> <th><input type="text" name="fields[]"</th>
> ...
> <th><input type="text" name="fields[]"</th>
<?php
foreach($_POST as $k => $v)
echo '<input type="hidden" name="' . $k . '" value="' .
stripslashes($v) . '">';
?>
> <th><input type="submit" value="Add" name="add"</th>
> </tr>
> </table>
> </form>
Ken
Navigation:
[Reply to this message]
|