I was wondering what is the reason behind pagination? is it used because it lessens the burden on the servers since we would technically limit the amount of rows returned per page?
I wanted to do something without pagination but given that i am new to this (i am an amateur) started wondering if its ok technically or not..
More a comment, but it’s pretty lengthy, so I post it as an answer:
Your question is pretty broad and it can not be specifically answered. Pagination can save resources, if you only request a subset of data instead of the superset.
So at least in a webapplication/php script pagination saves output data. For example instead of a table that contains 1000 rows with 1000 characters each (roughly 1MB), you would only return 10 rows with 1000 characters (~10kb).
Technically there is no reason that to paginate or not is generally ok or not. It depends on what you’d like to do. So I tend to answer like this in short:
It’s technically ok. Go ahead 😉 – And next time, please ask a more concrete question, I think that’s more helpful for you as well in the end.