Posted by Jay Blanchard on 09/15/05 15:10
[snip]
<form name="sqlform" action="table1_process2.php" method="post"
enctype="multipart/form-data" >
////////////////////////////////////////////////////////////////////////////
//
now i want to access the values from input fields on next page?
can somebody give me idea how to pass all form field values to next page
in this context??
[/snip]
Look in the $_POST array (which matches the form method) on the next page.
For example;
<?php
print_r($_POST);
?>
[Back to original message]
|