<--include virtual .....

  • Thread starter Thread starter Anonymous
  • Start date Start date
A

Anonymous

Guest
Hi all! whats the best way to put files together like the does!? is in PHP a special way available to do the same?

Thanks for your help (i'm a beginer, and sorry about my english) :-)

THX, tom
 
glow said:
Hi all! whats the best way to put files together like the does!? is in PHP a special way available to do the same?

Thanks for your help (i'm a beginer, and sorry about my english) :-)

THX, tom
You may use functions:
include 'file.ext'
include_once 'file.ext'
require 'file.ext'
require_one 'file.ext'

or manipulate by this function by if
 
Back
Top