hi, im sort of a newbie with php, and couldnt find anything about site structures. this is what i mean :
on professional sites that use php and you view the pages, you somethimes see http://www.blah.com/index.php?page=news
and another link leads to
http://www.blah.com/index.php?page=bla
then u see the bla page
are they using variables here ? like
<layout>
<introduction page> (when u go to index.php)
if ($page == news) {
echo "
news
";
}
if ($page == bla) {
echo "
bla
";
}
<end layout>
or is there a more effective way to do this?
i hope you understand what i mean