include "utils/db_utils.php"; include "utils/string_utils.php"; include "utils/config.php"; $con = db_connect(); mysqli_set_charset($con, "utf8"); $id = $_GET["id"]; if ($id == "" || !is_numeric($id)) header("location: index.php"); $word_details = get_englishword_details($con, $id); $english_word = trim($word_details["EnglishWord"]); $meaning = trim($word_details["Meaning"]); $related_phrase = trim($word_details["RelatedPhrase"]); $synonym = trim($word_details["Synonym"]); $meta_title = ucwords(strtolower($english_word)) . " Meaning in Telugu, Meaning of $english_word in Telugu"; $meta_keywords = "$english_word Telugu Meaning, $english_word Meaning in Telugu, English to Telugu Dictionary"; $meta_description = "Meaning of $english_word in Telugu or Telugu Meaning of $english_word & Synonyms of $english_word in Telugu and English. What is meaning of $english_word in Telugu Free English to Telugu Dictionary and Telugu Vocabulary."; ?>
include "index-meta-css.html"; ?>
$meaning = trim($meaning);
if (!empty($meaning)) display_list($meaning, "####");
else{
echo "No direct telugu meaning for '$english_word' has been found. ";
if (!empty($related_phrase) && !empty($synonym)) echo "Check out the related phrases or try the synonyms. ";
else if (!empty($related_phrase)) echo "Check out the related phrases. ";
else if (!empty($related_phrase) && !empty($synonym)) echo "Try the synonyms. ";
echo "
";
}
?>
display_list($related_phrase, "####"); ?>
} if (!empty($synonym)){ ?>display_list($synonym, "####"); ?>
} ?>