[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);

?>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to