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 trialTrầ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,497 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