Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9141967
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T09:42:56+00:00 2026-06-17T09:42:56+00:00

What is wrong with this query? I can’t get this query to pass these

  • 0

What is wrong with this query?

I can’t get this query to pass these arguments!

$offset = 5;
$rowsperpage = 10;
$stmt = $db->prepare("SELECT * FROM table ORDER BY ID DESC LIMIT ?,?");
if ($stmt->execute(array($offset, $rowsperpage))) {
  while ($row = $stmt->fetch()) {
    echo $row['title'];
  }
}

If I change the query to this it works fine, but I need to pass the strings because they are dynamic.

$stmt = $db->prepare("SELECT * FROM table ORDER BY ID DESC LIMIT 5,10");
if ($stmt->execute(array($offset, $rowsperpage))) {
  while ($row = $stmt->fetch()) {
    echo $row['title'];
  }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T09:42:56+00:00Added an answer on June 17, 2026 at 9:42 am

    I have a feeling that “lazy execution” treats all parameters as strings and thus enclose them in quotes.

    So, either bind your parameters explicitly, using bind_param instead of passing array into execute()

    or set emulation mode to off

    $db->setAttribute( PDO::ATTR_EMULATE_PREPARES, false );
    

    right after connect.

    anyway, you have to get in touch with the error message first.
    So, setting this one

    $db->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION );
    

    will reveal the error message to you

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can you find anything wrong with this query? SELECT * FROM requests WHERE id
Can anyone tell me whats wrong with this MySQL query ? select distinct(a.productId) from
Can someone help me understand what's wrong with this query: DELETE FROM noteproject INNER
Please can anyone tell me what's wrong with this MySQL query SELECT count(items.id) AS
I can't see what is wrong with this query. I get an error saying:
What's wrong with this query: SELECT co.*, mod.COUNT(*) as moduleCount, vid.COUNT(*) as vidCount FROM
Can any one tell me whats wrong in this query var result = from
What is wrong with this query: SELECT * FROM leaderboard WHERE ALREADYWON != '1'
Can someone tell what is wrong with this query? sqltext = SELECT utyp, count(*)
Can anyone tell me what is wrong with this query below? from a programming

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.