RE: [PHP] MySQL>Limit size

2002-10-06 Thread John W. Holmes
> > Are you using POST or GET for your form? Show some code... > > I use get. But I tried to post and look ok. Why this difference ? > > Christian, > You can only send so much data through GET, because the URL is limited as to how long it can be. It may be different for each browser, but I thi

RE: [PHP] MySQL>Limit size

2002-10-06 Thread Christian Ista
> Are you using POST or GET for your form? Show some code... I use get. But I tried to post and look ok. Why this difference ? Christian, -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] MySQL>Limit size

2002-10-06 Thread John W. Holmes
> I have a form with a textarea. When I put a long text(one word page for > example), when I submit, the form is not submitted. I have to remove > some line to submit. I don't have any limit in the textarea. The content > of this form is sorted in a MySQL database. I tried to set the field > where

RE: [PHP] mysql LIMIT

2002-07-14 Thread David Freeman
> can I use limit to show the 2nd record on without knowing > how many more records there might be? > > also, what happens if I set the limit in a mysql statement > (LIMIT 5,10), but there are only 3 results? 7 results? My answer would tend to be that you should try it for yourself and s

Re: [PHP] mysql LIMIT

2002-07-14 Thread Robert Cummings
Alexander Ross wrote: > > can I use limit to show the 2nd record on without knowing how many more > records there might be? > > also, what happens if I set the limit in a mysql statement (LIMIT 5,10), but > there are only 3 results? 7 results? This looks like a question that could be answered w