Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Trần Phúc
2,264 PointsAdd WHERE CLAUSE
WHY IT DONT WORK
<?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
Courses Plus Student 6,485 PointsYou 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;
}

Gokhan Dedeoglu
23,215 PointsCould 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
14,135 PointsI 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
Trần Phúc
2,264 PointsTrần Phúc
2,264 Pointsthanks