2017-01-09 31 views
0

如何可以通過回聲一個包含的文件處理的信息處理的信息,: 請解釋如何可以通過回波包含的文件

<div class="col-lg-8"> 
 
\t <a id="toggle" onclick="showorhide('phorder')" class="btn btn-default" >Show/Hide <? echo $phname; ?> Transactions History</a> 
 
\t <br><br> 
 
\t <div id="phorder"> 
 
\t \t <? include ("phtrx.php"); ?> 
 
\t </div> 
 
\t <br><br> 
 
\t <a id="toggle" onclick="showorhide('ghorder')" class="btn btn-default" >Show/Hide <? echo $phname; ?> Transactions History</a> 
 
\t <br><br> 
 
\t <div id="ghorder"> 
 
\t \t <? include ("ghtrx.php"); ?> 
 
\t </div> 
 
</div> 
 
<div class="col-lg-4"> 
 
\t <div class="ui green buttons"> 
 
\t \t <a id="toggle" onclick="showorhide('phlist')" class="btn btn-default" >Show/Hide <? echo $skph; ?> Request</a> 
 
\t </div> 
 
</div>

見上面的代碼中,請解釋更好

+0

有什麼文件?它應該在php內部使用echo \ print或者它的原始文本\ html會自動出現 – nogad

回答

0

文件到include.php:

<?php $who="world"; ?> 

file1.php:

<?php include 'file-to-include.php' ;?> 
Hello <?php echo $who; ?>!