I'm making a site, where mysql makes multiple
function functions()
{
site html / content here
}
With the main if statement, to have
if($page=="something_update") { something_update();
}
The problem with this line, is I'd have to write it 10000 times, for a big site, and define every one.
I don't know howto put it, so the $page, which is the index.php?page=something_update
will use whatever the $page is, as the function..
Can't find it anywhere in my php book.