$url = "http://raizen.tk/translate/?lang=".$_POST['lang']."&term=".$_POST['term'].;
has an extra .
at the end of the line before the semicolon. Try this:
$url = "http://raizen.tk/translate/?lang=".$_POST['lang']."&term=".$_POST['term'];
7
solved ok I’ve made a plain api of google translate [closed]