I have built a form submission consisting of about 90 values. The form needs to be submitted to another page that has a curl session which handles the last part. My question is, when I submit that form, how do I access the $_Post[] data as a whole array so I can submit it as the curl post array?
need to get
<form name="send" action="process.php" method="post">
<input 1>
<inpit 2>
...
<input 90>
</form>
to
process.php :
curl_setopt( $ch, CURLOPT_POSTFIELDS, $_Post[] );
Or is it as easy as putting $Post[]?