限制包括php文件

时间:2012-05-17 11:55:44

标签: php limit

我使用的是php include,我想限制第一页显示的内容:

1.PHP

<?php include('dynpage/some_text.htm'); ?> 

2.htm

    <p style="margin-left: 80px;"> <strong>some title nr.1</strong></p>
    <p>Some text nr.1</p> 

    <strong>some title nr.2</strong>
    <p><strong>NB!</strong>some really long text</p>

我希望“1.php”只显示“some title nr.1”和“some text nr.1”

我尝试了从互联网上找到的不同代码,但没有一个有效。

谢谢

1 个答案:

答案 0 :(得分:1)

我相信你必须制作逻辑以在2.htm上显示有限的数据(我建议将其设为php文件)。 将参数传递给第二个php文件,并根据它显示数据。

像“2.php?showless = true”这样的包含文件

On 2.php写道。

 $showless = $_GET['showless']

 if($showless =='true'){
   echo // what you want to show
 }{
   echo // for other cases show everything.
 }