|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-10-14 09:48 UTC] php at 4d dot fr
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 20 13:00:01 2025 UTC |
Description: ------------ The selection of tuples of a Table works perfect until I want to retrieve more than about 15 results. Then I get a blanc page. With "LIMIT 10" it works very well. I also must say that the problem only occures when I use "select * FROM XY. Reproduce code: --------------- $sth = $dbh->prepare("SELECT * FROM Stellen ORDER BY Titel LIMIT 20"); $sth->execute(); Expected result: ---------------- The dump of the result set as it does when I write "limit 10". Actual result: -------------- Blanc page (no error)