ページに 2 つのフォーム フィールドがあり、2 つの異なる送信ボタンがある場合、どのフォームを送信するかを cURL に伝えるにはどうすればよいですか?
例
<form method="post" action="index.php">
<input type="text" name="age">
<input type="submit" name="agree">
<input type="submit" name="disagree">
</form>
これまでの私のコード
//create array of data to be posted
$post_data['age'] = '5';
//traverse array and prepare data for posting (key1=value1)
foreach ( $post_data as $key => $value) {
$post_items[] = $key . '=' . $value;
}
$post_string = implode ('&', $post_items);
curl_setopt($curl_connection, CURLOPT_POSTFIELDS, $post_string);