Ok I have this in my html page:
<?php
if (!action == $simple):
{simple();}
elseif (!action == $table):
{table();}
elseif (!action == $cool_black):
{cool_black();}
elseif (!action == $sah):
{sah();}
elseif (!action == $banner):
{banner();}
else:
{supportus();}
endif;
?>
example function:
<?php
function supportus() {
make_title_top(\"Support Us ...\");
blah blah html
echo \"</TABLE>\n\";
make_title_bottom();
return;
}
I\'m trying to call the supportus first and then with in the supportus html are links for calling other functions ie; support.html?action=banner
it doesn\'t work but at least I still get a page being built but it only catches on the simple function --
Sure I could seperate the pages but I saw someone do this on their site and since I can\'t program I thought I could learn a little by start playing with how the html is being sent out through php, possibly backa_ssed but hey it\'s got me hooked and it seems like a way to start to learn how to program php.
:-) eventually I\'ll try fast-templates or the lib version but for now I still need to get my feet wet.
any help would be appreciated.