-1

我使用 php 包含,我想限制在第一页显示多少:

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”只显示“一些标题 nr.1”和“一些文本 nr.1”

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

谢谢

4

1 回答 1

1

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

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

2.php上写。

 $showless = $_GET['showless']

 if($showless =='true'){
   echo // what you want to show
 }{
   echo // for other cases show everything.
 }
于 2012-05-17T11:58:59.060 回答