PHP SQL Query Length
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
The following PHP code is from a website I'm trying to make. Basically, I'm trying to dump the contents of a SQL query into rows with 4 columns in each row.
<?php
$prep_stmt = $conn->prepare("SELECT * FROM eggs WHERE `egg_dist` = 5");
$prep_stmt->execute();
$res = $prep_stmt->fetchAll();
//$row as $r
for($x = 0; $x < len($res); $x+=4) {
echo "<div class ='row'>";
for($y = $x; $y < $x+4; $y++){
echo "<div class = 'col-3 text-center'>".$res[$y]['name']."</div>";
}
echo "</div>";
}
?>
The outer for loop should execute 1/4 of the length of the resulting query. The inner loop I want to iterate over 4 of the entries from the query array. I was thinking of doing this with a foreach loop, but the problem is at the beginning of the foreach it will start over again, so I have no way of preserving location and hence I am forced to do it with a regular for loop.
My issue is with len($res)
, which apparently doesn't exist in PHP. I want to get the array length of the fetched prepared statement but don't quite understand how. The php official documentation shows using fetchColumn(), but the way I tried it must have been wrong. I also saw a site that recommended using len(), and clearly that didn't work either, as if it did I wouldn't be making this post.
php mysql pdo
add a comment |
The following PHP code is from a website I'm trying to make. Basically, I'm trying to dump the contents of a SQL query into rows with 4 columns in each row.
<?php
$prep_stmt = $conn->prepare("SELECT * FROM eggs WHERE `egg_dist` = 5");
$prep_stmt->execute();
$res = $prep_stmt->fetchAll();
//$row as $r
for($x = 0; $x < len($res); $x+=4) {
echo "<div class ='row'>";
for($y = $x; $y < $x+4; $y++){
echo "<div class = 'col-3 text-center'>".$res[$y]['name']."</div>";
}
echo "</div>";
}
?>
The outer for loop should execute 1/4 of the length of the resulting query. The inner loop I want to iterate over 4 of the entries from the query array. I was thinking of doing this with a foreach loop, but the problem is at the beginning of the foreach it will start over again, so I have no way of preserving location and hence I am forced to do it with a regular for loop.
My issue is with len($res)
, which apparently doesn't exist in PHP. I want to get the array length of the fetched prepared statement but don't quite understand how. The php official documentation shows using fetchColumn(), but the way I tried it must have been wrong. I also saw a site that recommended using len(), and clearly that didn't work either, as if it did I wouldn't be making this post.
php mysql pdo
1
count()
– Phil
Jan 3 at 5:17
add a comment |
The following PHP code is from a website I'm trying to make. Basically, I'm trying to dump the contents of a SQL query into rows with 4 columns in each row.
<?php
$prep_stmt = $conn->prepare("SELECT * FROM eggs WHERE `egg_dist` = 5");
$prep_stmt->execute();
$res = $prep_stmt->fetchAll();
//$row as $r
for($x = 0; $x < len($res); $x+=4) {
echo "<div class ='row'>";
for($y = $x; $y < $x+4; $y++){
echo "<div class = 'col-3 text-center'>".$res[$y]['name']."</div>";
}
echo "</div>";
}
?>
The outer for loop should execute 1/4 of the length of the resulting query. The inner loop I want to iterate over 4 of the entries from the query array. I was thinking of doing this with a foreach loop, but the problem is at the beginning of the foreach it will start over again, so I have no way of preserving location and hence I am forced to do it with a regular for loop.
My issue is with len($res)
, which apparently doesn't exist in PHP. I want to get the array length of the fetched prepared statement but don't quite understand how. The php official documentation shows using fetchColumn(), but the way I tried it must have been wrong. I also saw a site that recommended using len(), and clearly that didn't work either, as if it did I wouldn't be making this post.
php mysql pdo
The following PHP code is from a website I'm trying to make. Basically, I'm trying to dump the contents of a SQL query into rows with 4 columns in each row.
<?php
$prep_stmt = $conn->prepare("SELECT * FROM eggs WHERE `egg_dist` = 5");
$prep_stmt->execute();
$res = $prep_stmt->fetchAll();
//$row as $r
for($x = 0; $x < len($res); $x+=4) {
echo "<div class ='row'>";
for($y = $x; $y < $x+4; $y++){
echo "<div class = 'col-3 text-center'>".$res[$y]['name']."</div>";
}
echo "</div>";
}
?>
The outer for loop should execute 1/4 of the length of the resulting query. The inner loop I want to iterate over 4 of the entries from the query array. I was thinking of doing this with a foreach loop, but the problem is at the beginning of the foreach it will start over again, so I have no way of preserving location and hence I am forced to do it with a regular for loop.
My issue is with len($res)
, which apparently doesn't exist in PHP. I want to get the array length of the fetched prepared statement but don't quite understand how. The php official documentation shows using fetchColumn(), but the way I tried it must have been wrong. I also saw a site that recommended using len(), and clearly that didn't work either, as if it did I wouldn't be making this post.
php mysql pdo
php mysql pdo
edited Jan 3 at 5:18
Phil
99.9k12147163
99.9k12147163
asked Jan 3 at 4:52
danielschnolldanielschnoll
199317
199317
1
count()
– Phil
Jan 3 at 5:17
add a comment |
1
count()
– Phil
Jan 3 at 5:17
1
1
count()
– Phil
Jan 3 at 5:17
count()
– Phil
Jan 3 at 5:17
add a comment |
3 Answers
3
active
oldest
votes
You can get no. of rows return like
$count = $prep_stmt->rowCount();
add a comment |
You can use below code for no of rows..
/* Number of rows.*/
$stmt->execute();
$data = $stmt->fetch(PDO::FETCH_ASSOC);
$count = $data['count(*)'];
/Number of rows/
http://php.net/manual/en/pdo.prepare.php
PDOStatement
does not have anum_rows
property
– Phil
Jan 3 at 5:16
num_rows is there. can you cross check @Phil
– Umar Abdullah
Jan 3 at 5:21
OP is using PDO, not MySQLi
– Phil
Jan 3 at 5:21
You are right @ph
– Umar Abdullah
Jan 3 at 5:29
add a comment |
$prep_stmt = $conn->query("SELECT * FROM eggs WHERE `egg_dist` = 5 limit 4");
$len = $prep_stmt->num_rows;
while($row = $prep_stmt->fetch_assoc()) {
echo "<div class ='row'>";
$col = array_keys($row);
for($y = 0; $y < 4; $y++){
echo "<div class = 'col-3 text-center'>".$row[$col[$y]]."</div>";
}
echo "</div>";
}
OR if want print only name
while($row = $prep_stmt->fetch_assoc()) {
echo "<div class ='row'>";
echo "<div class = 'col-3 text-center'>".$row['name']."</div>";
echo "</div>";
}
1
PDOStatement
does not have anum_rows
property. Nor does it have afetch_assoc()
method
– Phil
Jan 3 at 5:20
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54016534%2fphp-sql-query-length%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can get no. of rows return like
$count = $prep_stmt->rowCount();
add a comment |
You can get no. of rows return like
$count = $prep_stmt->rowCount();
add a comment |
You can get no. of rows return like
$count = $prep_stmt->rowCount();
You can get no. of rows return like
$count = $prep_stmt->rowCount();
answered Jan 3 at 5:00


Abdur RahmanAbdur Rahman
55110
55110
add a comment |
add a comment |
You can use below code for no of rows..
/* Number of rows.*/
$stmt->execute();
$data = $stmt->fetch(PDO::FETCH_ASSOC);
$count = $data['count(*)'];
/Number of rows/
http://php.net/manual/en/pdo.prepare.php
PDOStatement
does not have anum_rows
property
– Phil
Jan 3 at 5:16
num_rows is there. can you cross check @Phil
– Umar Abdullah
Jan 3 at 5:21
OP is using PDO, not MySQLi
– Phil
Jan 3 at 5:21
You are right @ph
– Umar Abdullah
Jan 3 at 5:29
add a comment |
You can use below code for no of rows..
/* Number of rows.*/
$stmt->execute();
$data = $stmt->fetch(PDO::FETCH_ASSOC);
$count = $data['count(*)'];
/Number of rows/
http://php.net/manual/en/pdo.prepare.php
PDOStatement
does not have anum_rows
property
– Phil
Jan 3 at 5:16
num_rows is there. can you cross check @Phil
– Umar Abdullah
Jan 3 at 5:21
OP is using PDO, not MySQLi
– Phil
Jan 3 at 5:21
You are right @ph
– Umar Abdullah
Jan 3 at 5:29
add a comment |
You can use below code for no of rows..
/* Number of rows.*/
$stmt->execute();
$data = $stmt->fetch(PDO::FETCH_ASSOC);
$count = $data['count(*)'];
/Number of rows/
http://php.net/manual/en/pdo.prepare.php
You can use below code for no of rows..
/* Number of rows.*/
$stmt->execute();
$data = $stmt->fetch(PDO::FETCH_ASSOC);
$count = $data['count(*)'];
/Number of rows/
http://php.net/manual/en/pdo.prepare.php
edited Jan 3 at 5:40
answered Jan 3 at 5:06
Umar AbdullahUmar Abdullah
717419
717419
PDOStatement
does not have anum_rows
property
– Phil
Jan 3 at 5:16
num_rows is there. can you cross check @Phil
– Umar Abdullah
Jan 3 at 5:21
OP is using PDO, not MySQLi
– Phil
Jan 3 at 5:21
You are right @ph
– Umar Abdullah
Jan 3 at 5:29
add a comment |
PDOStatement
does not have anum_rows
property
– Phil
Jan 3 at 5:16
num_rows is there. can you cross check @Phil
– Umar Abdullah
Jan 3 at 5:21
OP is using PDO, not MySQLi
– Phil
Jan 3 at 5:21
You are right @ph
– Umar Abdullah
Jan 3 at 5:29
PDOStatement
does not have a num_rows
property– Phil
Jan 3 at 5:16
PDOStatement
does not have a num_rows
property– Phil
Jan 3 at 5:16
num_rows is there. can you cross check @Phil
– Umar Abdullah
Jan 3 at 5:21
num_rows is there. can you cross check @Phil
– Umar Abdullah
Jan 3 at 5:21
OP is using PDO, not MySQLi
– Phil
Jan 3 at 5:21
OP is using PDO, not MySQLi
– Phil
Jan 3 at 5:21
You are right @ph
– Umar Abdullah
Jan 3 at 5:29
You are right @ph
– Umar Abdullah
Jan 3 at 5:29
add a comment |
$prep_stmt = $conn->query("SELECT * FROM eggs WHERE `egg_dist` = 5 limit 4");
$len = $prep_stmt->num_rows;
while($row = $prep_stmt->fetch_assoc()) {
echo "<div class ='row'>";
$col = array_keys($row);
for($y = 0; $y < 4; $y++){
echo "<div class = 'col-3 text-center'>".$row[$col[$y]]."</div>";
}
echo "</div>";
}
OR if want print only name
while($row = $prep_stmt->fetch_assoc()) {
echo "<div class ='row'>";
echo "<div class = 'col-3 text-center'>".$row['name']."</div>";
echo "</div>";
}
1
PDOStatement
does not have anum_rows
property. Nor does it have afetch_assoc()
method
– Phil
Jan 3 at 5:20
add a comment |
$prep_stmt = $conn->query("SELECT * FROM eggs WHERE `egg_dist` = 5 limit 4");
$len = $prep_stmt->num_rows;
while($row = $prep_stmt->fetch_assoc()) {
echo "<div class ='row'>";
$col = array_keys($row);
for($y = 0; $y < 4; $y++){
echo "<div class = 'col-3 text-center'>".$row[$col[$y]]."</div>";
}
echo "</div>";
}
OR if want print only name
while($row = $prep_stmt->fetch_assoc()) {
echo "<div class ='row'>";
echo "<div class = 'col-3 text-center'>".$row['name']."</div>";
echo "</div>";
}
1
PDOStatement
does not have anum_rows
property. Nor does it have afetch_assoc()
method
– Phil
Jan 3 at 5:20
add a comment |
$prep_stmt = $conn->query("SELECT * FROM eggs WHERE `egg_dist` = 5 limit 4");
$len = $prep_stmt->num_rows;
while($row = $prep_stmt->fetch_assoc()) {
echo "<div class ='row'>";
$col = array_keys($row);
for($y = 0; $y < 4; $y++){
echo "<div class = 'col-3 text-center'>".$row[$col[$y]]."</div>";
}
echo "</div>";
}
OR if want print only name
while($row = $prep_stmt->fetch_assoc()) {
echo "<div class ='row'>";
echo "<div class = 'col-3 text-center'>".$row['name']."</div>";
echo "</div>";
}
$prep_stmt = $conn->query("SELECT * FROM eggs WHERE `egg_dist` = 5 limit 4");
$len = $prep_stmt->num_rows;
while($row = $prep_stmt->fetch_assoc()) {
echo "<div class ='row'>";
$col = array_keys($row);
for($y = 0; $y < 4; $y++){
echo "<div class = 'col-3 text-center'>".$row[$col[$y]]."</div>";
}
echo "</div>";
}
OR if want print only name
while($row = $prep_stmt->fetch_assoc()) {
echo "<div class ='row'>";
echo "<div class = 'col-3 text-center'>".$row['name']."</div>";
echo "</div>";
}
answered Jan 3 at 5:17


Bharoo JangidBharoo Jangid
454
454
1
PDOStatement
does not have anum_rows
property. Nor does it have afetch_assoc()
method
– Phil
Jan 3 at 5:20
add a comment |
1
PDOStatement
does not have anum_rows
property. Nor does it have afetch_assoc()
method
– Phil
Jan 3 at 5:20
1
1
PDOStatement
does not have a num_rows
property. Nor does it have a fetch_assoc()
method– Phil
Jan 3 at 5:20
PDOStatement
does not have a num_rows
property. Nor does it have a fetch_assoc()
method– Phil
Jan 3 at 5:20
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54016534%2fphp-sql-query-length%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
count()
– Phil
Jan 3 at 5:17