Im using a php include and i want to limit how much is shown at the first page:
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>
i want that “1.php” is showing only “some title nr.1” and “Some text nr.1”
i tried different codes i found from internet but none of them worked.
Thank you
I believe you will have to make the logic to display limited data on 2.htm (I suggest make it a php file).
Pass a parameter to the second php file and based on it display the data.
Something like include file like “2.php?showless=true”
On 2.php write.