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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T09:19:34+00:00 2026-05-24T09:19:34+00:00

Just using a SELECT in my MySQL statement, trying to get a column. $last_visit

  • 0

Just using a SELECT in my MySQL statement, trying to get a column.

$last_visit = $db->prepare( 'SELECT `last_visit` FROM `visitors` WHERE `ip` = :ip' )
        ->execute( $arr_ip );
var_dump( $last_visit );

The output of var_dump is bool(true) instead of the data I need. Trying ->fetch() only throws an error.

What can I do? This is holding up my whole project, and I can’t figure out what’s wrong no matter where I look. The correct data is in the database, the connection is correct and INSERT works.

  • 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-05-24T09:19:36+00:00Added an answer on May 24, 2026 at 9:19 am

    as said in the documentation, execute() returns a boolean. take a look at the eamples for fetch() to see how your should use PDO.

    In your case, the code should look like this:

    $stmt = $db->prepare( 'SELECT `last_visit` FROM `visitors` WHERE `ip` = :ip' );
    $stmt->bindParam(':ip', $arr_ip);
    $stmt->execute();
    if($row = $stmt->fetch()){
      $last_visit = $row['last_visit'];
    }else{
      // whatever you like to do if there's no result...
    }
    

    EDIT:
    additional information in response to your comment:

    For an UPDATE or DELETE, you can do a one-liner like your example, because you may not need the result (or rather just true/false to see if the request was successful).

    For a SELECT, you need to fetch() the result. You can leave bindParam() out and give the params to execute, like you tried, but without a fetch(), you wont get your results.

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

Sidebar

Related Questions

I am trying to select from a mySQL table using prepared statements. The select
Just a quick question about using select() . I'm using select() to read from
Using a SELECT statement in MS SQL 2005 TSQL, and no source table, just
I'm inserting records from one table into another table using a select statement. The
The web application I'm currently developing supports CSV export from (using SELECT INTO OUTFILE)
I am executing a mysql SELECT statement which takes 30 seconds to run the
I am unsure how to get the value of dc:creator from an RSS-feed using
Edit 4: the problem came from using the string name of the column instead
I've just built a site using codeigniter and mysql. It works great, but I
I tried to connect C++ to MySql and I just can't get this to

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.