$email = '' ; //'ENTER YOUR Email';
$key = '' ; //'ENTER YOUR KEY';
$contentToSpin = '' ; //'ENTER CONTENT TO SPIN';
$Ignore_words = 'href,title,style,src,alt,color,am,is,are,was,were,he,she,it,have,has,had,would,will,be,there,the,which,that,what,when,who,and,them,mr,mrs,him,my,this,do,did,done,for,her,hir,its,my,our,their,vis,xyr,your,zir,mine,hers,theirs,yours,his' ; //"ENTER ignore words. Words are separated by ',' ";
$Only_spin_phrase = '0' ; // 1 or 0 - 1: only spin phrase (2 words up);
$Spin_uppercase = '0' ; // 1 or 0 - 0: not spin uppercase;
$post_data = array();
$post_data['email'] = $email;
$post_data['key'] = $key;
$post_data['contentToSpin'] = $contentToSpin;
$post_data['Only_spin_phrase'] = $Only_spin_phrase;
$post_data['Spin_uppercase'] = $Spin_uppercase;
$url = 'https://www.spinsyn.com/spinning_process.php';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url );
curl_setopt($ch, CURLOPT_POST, 1 );
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$spin_result = curl_exec($ch);
echo $spin_result;