14
Where is your mainfile in respect to the file with that content?
If it is in the same directory use:
le="color: #000000"><?php include("mainfile.php");
or
le="color: #000000"><?php echo dirname(__FILE__)."/mainfile.php";
If it is in the parent directory use
le="color: #000000"><?php include("../mainfile.php");
If it is two directories down use
le="color: #000000"><?php include("../../mainfile.php");
For optimal readability of your posts, after selecting the code, push on the code button ( <> ).