Re: include in php



Shearer wrote:
Which is the corresponding in php of asp command:
<!-- #Include file="file.asp" -->
?

<?PHP include 'file.php' ; ?>
http://www.php.net/manual/en/function.include.php

<?PHP include_once('file.php'); ?>
http://www.php.net/manual/en/function.include-once.php


//Aho
.