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 trialryota kurazono
Courses Plus Student 4,248 PointsI got stuck!
I can't fix the problem, especially on line 11. If someone know what's wrong this code, please let me know.
<?php
function get_member($members) {
include("connection.php");
try {
$results = $db->prepare(
"SELECT member_id, email, fullname, level
FROM members
WHERE member_id = ? "
);
$results -> bindParam(1,$member_id);
} catch (Exception $e) {
echo "bad query";
}
$members = $results->fetchAll();
return $members;
}
1 Answer
Ivan Bagaric
Courses Plus Student 12,356 PointsYou need to add LIMIT 1, and execute query, like this:
function get_member($member_id) {
include("connection.php");
try {
$results = $db->prepare(
"SELECT member_id, email, fullname, level
FROM members WHERE member_id = ? LIMIT 1"
);
$results->bindParam(1, $member_id, PDO::PARAM_INT);
$results->execute();
} catch (Exception $e) {
echo "bad query";
}
$members = $results->fetchAll();
return $members;
}