<?php @include("/xxx.php"); ?>
I am trying to string php includes.
If I am running more than one php script & each has to have it's own include as the first line of the php file, how would I string them together.
for example, the trade script wants <? @include 'stt-in.php'; ?>
as the first line, & the other script wants <?php @include("/xxx.php"); ?>as the first line??
what do I do? is it;
<? @include 'stt-in.php'; ?> <?php @include("/xxx.php"); ?>
OR: <? @include 'stt-in.php'; ?php @include("/xxx.php"); ?>
or is it all wrong?
please help
|