I am having problem with navigating using variables. Can anyone tell me what I might be doing wrong? I can't find any reference to this in the docs.
<?
$path = "frontpage";
$content = "file.inc";
include("$path/$content");
?>
If the above is wrong, why is this next code also not working?
<?
$pathcontent = "$path/content";
?>
It's driving me nuts! How can I set it up to work? By using + or by using . to concatenate the two variables - and are / allowed?
TIA
Mac