Hi, can anybody help me? I was fiddling with my site's layout a while ago, didn't change anything important, and then, my PHP code stopped working.
<?php
if ($id == $null) include("home.php");
else include("$id.php");
?>
Does anybody know why? It's the exact same code I've always used...
<?php
if ($id == $null) include("home.php");
else include("$id.php");
?>
Does anybody know why? It's the exact same code I've always used...