split($text);
$SynChangedText = "";
foreach ($sentences as $s) {
$s_md5 = md5($s);
$s_url = "http://sempria.de:3309/reformulate?s=$s&enc=utf8";
$t = $func->get_html($s_url);
$t_md5 = md5($t);
$SynChangedText .= $t;
// echo "$s -> md5: $s_md5
";
// echo "$t -> md5: $t_md5
";
// echo "
";
}
$content = array_merge(
array('robots'=>"INDEX,FOLLOW,ALL"),
array('title'=>"Unique Content Creation by OneTIPP.COM!"),
array('onetipp_original'=>$text),
array('onetipp_results'=>$SynChangedText),
array('description'=>"Kopiere einen Text und erstelle vollautomatisch einen neuen Text!")
);
$design->setPath("/home/www/www.onetipp.com/tpl-new");
$design->display('startpage_new', $content, true, false);
exit(0);
?>