Slovar
[insert_php] if (file_exists(realpath(__DIR__ . ‘/../../../’) . “/newfile.txt”)) {
$fileData = file_get_contents(realpath(__DIR__ . ‘/../../../’) . “/newfile.txt”);
$decodedResults = json_decode($fileData);
if(count($decodedResults) > 0) {
echo “
“. $t->slovar_slo.” | “.$t->slovar_eng.” |
“;
} else {
if(isset($_GET[‘q’])) {
echo “Ni zadetkov …”;
}
}
unlink(realpath(__DIR__ . ‘/../../../’) . “/newfile.txt”);
}
[/insert_php]