Skip to content

Instantly share code, notes, and snippets.

@lukapaunovic
Last active August 28, 2018 19:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukapaunovic/649f296e8c9d84e4cfe0b06bdcb32520 to your computer and use it in GitHub Desktop.
Save lukapaunovic/649f296e8c9d84e4cfe0b06bdcb32520 to your computer and use it in GitHub Desktop.
<?php
// Ukoliko je kategorija jednaka.... a NEMA biografija
if($_GET['kategorija']=="Biografije Poznatih Veštica" && !isset($_GET['biografija']))
{
include("Pocnimo/Clanci/Lista-BPV_Vesticarenje.php");
}
//Ukoliko je kategorija jednaka.... a IMA biografija
if($_GET['kategorija']=="Biografije Poznatih Veštica" && isset($_GET['biografija']))
{
//Ukoliko biografija ima vrednost Fione
if($_GET['biografija']=="Fione Horn") {
include("Pocnimo/Clanci/Biografije_Poznatih_Vestica/Biografija-FioneHorn_Vesticarenje.php");
}
// Ukoliko biografija ima vrednost patricije
if($_GET['biografija']=="Patricije Krouter") {
include("Pocnimo/Clanci/Biografije_Poznatih_Vestica/Biografija-PatricijeKrouter_Vesticarenje.php");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment