Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP Integrating PHP with Databases Using Relational Tables Using a Prepared Statement

Add WHERE CLAUSE

WHY IT DONT WORK

index.php
<?php
function get_member($member_id) {
    include("connection.php");

    try {
      $results = $db->prepare(
          "SELECT member_id, email, fullname, level
          FROM members
          WHERE members.member_id=$member_id"
      );

    } catch (Exception $e) {
      echo "bad query";
    }

    $members = $results->fetchAll();
    return $members;
}

3 Answers

Cindy Lea
PLUS
Cindy Lea
Courses Plus Student 6,497 Points

You have a few changes to make:

<?php function get_member($member_id) { include("connection.php");

try {
  $results = $db->query(
      "SELECT member_id, email, fullname, level
      FROM members
      WHERE member_id = " . $member_id
  );
} catch (Exception $e) {
  echo "bad query";
}

$members = $results->fetchAll();
return $members;

}

thanks

Gokhan Dedeoglu
Gokhan Dedeoglu
23,215 Points

Could you try this?

<?php function get_member($member_id) { include("connection.php"); try { $result = $db->prepare('SELECT member_id, email, fullname, level FROM members WHERE members.member_id=:member_id'); $result ->bindParam(':memberid', $member_id); $result->execute(); } catch (Exception $e) { echo "bad query"; } return $result; }

Shawn O'Connor
Shawn O'Connor
14,135 Points

I did everything in the first step, and it never would accept my WHERE clause on the 2nd step. I refreshed and just added the argument in the first step and the WHERE clause in the 2nd and it worked.

may be a bug