Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End displaying limited data in php

  • This topic is empty.
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #169845
    Moorthi
    Participant

    how to display the no of datas into particular rows for the web page using php.after that remaining rows will displayed in another page….

    xample”=having 100 rows in webpage.but we ll show in 50 rows,

    #169895
    shaneisme
    Participant

    I think you’re talking about pagination.

    Try this tutorial on: http://code.tutsplus.com/tutorials/how-to-paginate-data-with-php–net-2928

    #169973
    Moorthi
    Participant

    i know pagination.but i show selecting the field and show all data field in a form..still we show 10 data for condition….remaining data will be updated another page

    #170028
    Rohithzr
    Participant

    well i use JQuery DataTables! it’s easy and also come in MVC format

    #170155
    Moorthi
    Participant

    how to displaying limited fields / rows in web forms using loop condition

    #170265
    Rohithzr
    Participant

    use LIMIT 0, 50 in your SQL Query and then when next is clicked change it to LIMIT 51, 100 and so on so forth

Viewing 6 posts - 1 through 6 (of 6 total)
  • The forum ‘Back End’ is closed to new topics and replies.