Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following dynamic output generated by Joomla for page navigation.

<ul>
    <li class="pagination-start">
        <span class="pagenav">Start</span>
    </li>
    <li class="pagination-prev">
        <span class="pagenav">Prev</span>
    </li>
    <li>
        <span class="pagenav">1</span>
    </li>
    <li>
        <a title="2" href="link-to-page-2" class="pagenav">2</a>
    </li>
    <li class="pagination-next">
        <a title="Next" href="link-to-next-page" class="pagenav">Next</a>
    </li>
    <li class="pagination-end">
        <a title="End" href="link-to-last-page" class="pagenav">End</a>
    </li>
</ul>

I need only the link data of the next page i.e. link-to-next-page which is wrapped by <li class="pagination-next"></li>

I need to do it in PHP so that I can make use of the same the same for my Infinite Scrolling plugin.

I can do it through jQuery but it will not serve the purpose. I am looking for a PHP solution to get this.

Can someone please help me?

share|improve this question
1  
You can install your own pagination plugin. Joomla comes with a page navigation plugin that you can adapt to your needs. – juanrpozo Aug 31 '12 at 19:15
I need to retain the standard pagination system as it is also used by other components. Just want take out the required link from the output may be by preg_match. I don't have much knowledge in PHP so seeking help. I want to extract the href data where the title="Next". – Abhishek Aug 31 '12 at 19:39
Add a condition in the pagination plugin to fit your needs. – Shaz Sep 6 '12 at 15:18

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.