I have this code which prints certain results pulled from API xml
<?php
echo "<h1>Approval Stats</h1><br /><br />";
echo "Report for Agent Name: <b>Bhaskar</b><br />";
$ch = curl_init();
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_VERBOSE, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible;)");
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_URL,'http://login.leadkitchen.com/affiliates/api/4/reports.asmx/CampaignSummary' );
$post_array = array(
'api_key' => 'abc',
'affiliate_id' => 'abc',
'start_date' => '10/8/2012',
'end_date' => '10/11/2012',
'sub_affiliate' => 'email',
'start_at_row' => '1',
'row_limit' => '0',
'sort_field' => 'offer_name',
'sort_descending' => 'true'
);
//url-ify the data
foreach($post_array as $key=>$value)
{
$post_array_string .= $key.'='.$value.'&';
}
$post_array_string = rtrim($post_array_string,'&');
//set the url, number of POST vars, POST data
curl_setopt($ch,CURLOPT_POST,count($post_array ));
curl_setopt($ch,CURLOPT_POSTFIELDS,$post_array_string);
$response = curl_exec($ch);
// print_r($response);
$xml = new SimpleXMLElement($response);
echo "<pre>";
echo "Process Name: "; echo $xml->campaigns->campaign->vertical_name, PHP_EOL;
echo "Approvals: "; echo $xml->campaigns->campaign->conversions, PHP_EOL;
echo "Applied: "; echo $xml->campaigns->campaign->clicks, PHP_EOL;
?>
Possible xml response in this link http://z4site.com/social/pay/summary.php
<campaigns>
<campaign>
<vertical_name>Free Stuff</vertical_name>
<clicks>6</clicks>
<conversions>1</conversions>
</campaign>
</campaigns>
but I need to create a form to actually let the user enter these fields manually before generating the result using ajax.
- sub_affiliate
- start_date
- end_date
from this para
$post_array = array(
'api_key' => 'abc',
'affiliate_id' => 'abc',
'start_date' => '10/8/2012',
'end_date' => '10/11/2012',
'sub_affiliate' => 'email',
'start_at_row' => '1',
'row_limit' => '0',
'sort_field' => 'offer_name',
'sort_descending' => 'true'
);
how do I do that..should I create a HTML file for that? can you suggest me the code please? thanks
html file http://z4site.com/social/pay/report.html
<html>
<head>
</head>
<body>
<form method="post" action="summary.php">
<input type="text" name="sub_affiliate" />
<input type="text" name="start_date" />
<input type="text" name="end_date" />
<input type="submit" name="submit" value="Search" />
</form>
</body>
</html>