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 8563391
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T16:56:59+00:00 2026-06-11T16:56:59+00:00

I have other PDO Statements that execute fine, but this one is screwed up.

  • 0

I have other PDO Statements that execute fine, but this one is screwed up.

$sth = $dbh->prepare( 'SELECT * FROM `post` LIMIT ?,?' );
$sth->execute( array( 0, 10 ) );

The above does NOT work, but the below does work:

$sth = $dbh->prepare( 'SELECT * FROM `post` LIMIT 0,10' );
$sth->execute( array( 0, 10 ) );

So why won’t the first way display any of my results when it should be giving the same response?


So here is what I have now

$start = 0;
$perpage = 10;

$sth = $dbh->prepare( 'SELECT * FROM `post` LIMIT ?,?' );
$sth->bindValue(1, $start, PDO::PARAM_INT);
$sth->bindValue(2, $perpage, PDO::PARAM_INT);
$sth->execute(); 

this also does not work

$sth = $dbh->prepare( 'SELECT * FROM `post` LIMIT ?,?' );
$sth->bindParam(1, 0, PDO::PARAM_INT);
$sth->bindParam(2, 10, PDO::PARAM_INT);
$sth->execute();
  • 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-11T16:57:00+00:00Added an answer on June 11, 2026 at 4:57 pm

    The problem is likely that PDO will interpret any inputs as strings. You can try

    $sth = $dbh->prepare( 'SELECT * FROM `post` LIMIT :low,:high' );
    $sth->bindValue(':low', 0, PDO::PARAM_INT);
    $sth->bindValue(':high', 10, PDO::PARAM_INT);
    $sth->execute();
    

    Or

    $low = 0;
    $high = 10;
    $sth = $dbh->prepare( 'SELECT * FROM `post` LIMIT :low,:high' );
    $sth->bindParam(':low', $low, PDO::PARAM_INT);
    $sth->bindParam(':high', $high, PDO::PARAM_INT);
    $sth->execute();
    

    Source: How to apply bindValue method in LIMIT clause?

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

Sidebar

Related Questions

Here the thing, other PDO works well, but this one doesn't. I have tried
I just want to have other opinions about this one that I have been
I have the following PDO statement: $stmt = $db->prepare(SELECT MAX(RID) FROM TEMP_ROUTE); $stmt->execute(); $rid
I have a set of PDO statements that do not seem to be working.
Other people have asked this question, but mine is a little more specific. I
So I have this problem when I run a script with PHP PDO that
I have looked at other questions and answers regarding this, but can't seem to
I have other-window.xaml file and trying to open this from window.xaml on button click.
I have an Action entity, that can have other Action objects as child in
We sometimes write dataport scripts that rename tables or columns and have other complex

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.