limited searching/displaying?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
liuliu
Forum Newbie
Posts: 8
Joined: Fri May 09, 2003 4:52 pm

limited searching/displaying?

Post by liuliu »

I have about 490 records in the database. But every time I do searching, it only displays (or search?) the first 10-15 records. I have not put any limit on the number of records to search or display.

Why was that?

Thanks
Liu Liu
JPlush76
Forum Regular
Posts: 819
Joined: Thu Aug 01, 2002 5:42 pm
Location: Los Angeles, CA
Contact:

Post by JPlush76 »

where are you searching? command line? phpmyadmin? webpage?
User avatar
m3mn0n
PHP Evangelist
Posts: 3548
Joined: Tue Aug 13, 2002 3:35 pm
Location: Calgary, Canada

Post by m3mn0n »

maybe add a limit, an unlimited limit.

:wink:

Code: Select all

LIMIT 0, 500
McGruff
DevNet Master
Posts: 2893
Joined: Thu Jan 30, 2003 8:26 pm
Location: Glasgow, Scotland

Post by McGruff »

Post some of your code.
Post Reply