hey. does anyone know of a nice totorial for this? im going to put some sql stuff in my website to make it easyer for me, so i dont have to go and edit everysingle page just to change the header. thanks.
If that is your only goal it would be easy to use php includes for your header, navigation, ads, footer etc.
do this: open a new file in notepad and create a web page and save it with a ".php" extension. something like mypage.php within the "mypage.php" file put this php code in there <?php include("anotherpage.php"); ?> and then create another new file like the one below and save it as "anotherpage.php" <?php echo 'this will show on every page...etc'; ?> now every file/web page that has a .php extension and the code <?php include("anotherpage.php"); ?> in it will show the contents of the file "anotherpage.php"