<?php include('class.DYM.php'); ?><?php
$DYM = new DYM();
// If you have trouble with "File delivery failed. Please try again."
$DYM->use_socketconnection = true;
// You may use dif lang the def is "en"
$DYM->lang = "en-US";
if ($DYM->suggest('Beauity Salon Durbanville')) {
// this wil print the suggested spelling as per google
echo($DYM->correct);
} else {
echo ' No suggestion ';
}
?>