I have problem with php code. Instead of show this code processed it treats this code as comment. Other parts of code work properly, only this one no. The second intresting thing is that when I have written ?php instead of ? website is even not showing this code as a comment. What can be a reason?
<?
if (((isset ($_GET ["leaf"]))
&& ($_GET ["leaf"] != "news0"))
|| (!isset ($_GET ["leaf"])))
{
echo "<a class=\"tuco\" href=\"?node=news&leaf=news0\">";
}
else
{
echo "<strong><a class=\"tuco\" href=\"?node=news&leaf=news0\">";
}
echo "erstellen";
if (((isset ($_GET ["leaf"]))
&& ($_GET ["leaf"] != "news0"))
|| (!isset ($_GET ["leaf"])))
{
echo "</a>";
}
else
{
echo "</a></strong>";
}
echo " | ";
if (((isset ($_GET ["leaf"]))
&& ($_GET ["leaf"] != "news1"))
|| (!isset ($_GET ["leaf"])))
{
echo "<a class=\"tuco\" href=\"?node=news&leaf=news1\">";
}
else
{
echo "<strong><a class=\"tuco\" href=\"?node=news&leaf=news2\">";
}
echo "löschen";
if (((isset ($_GET ["leaf"]))
&& ($_GET ["leaf"] != "news2"))
|| (!isset ($_GET ["leaf"])))
{
echo "</a>";
}
else
{
echo "</a></strong>";
}?>