Thread: PHP Help
View Single Post
11-21-2005, 10:50 PM
#13
Aros is offline Aros
Aros's Avatar
Status: Lurker
Join date: Jul 2004
Location: the Netherlands
Expertise:
Software:
 
Posts: 1,074
iTrader: 2 / 100%
 

Aros is on a distinguished road

  Old

Originally Posted by Blaze
It worked better but this comes up


This is line 101:
PHP Code:
<? include($section ".php"); ?>
Edit: aros, I would I just dont understand how to use that one
Every bit of piece;
PHP Code:
        case "contact"
            include(
"contact.php"); 
            break; 
Stands for including a certain file, for example you want to include the file "funny";
PHP Code:
        case "funny"
            include(
"funny.php"); 
            break; 
Ofcourse all of that within the piece of code I and sketchie posted earlier.