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!
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

Leonard Foster
14,806 Pointslimiting records getting data error
I entered this and got data nope 2. WHY?!?!
function get_products_subset($positionStart, $positionEnd) {
$offset = $positionStart - 1;
$rows = $positionEnd - $positionStart + 1;
require(ROOT_PATH . "database.php");
try {
$results = $db->prepare("
SELECT name, price, img, sku, paypal
FORM products
ORDER BY sku
LIMIT ?, ?");
$results->bindParam(1,$offset,PDO::PARAM_INT);
$results->bindParam(2,$rows,PDO::PARAM_INT);
$results->execute();
}catch (Exception $e) {
echo "data nope 2";
exit;
}
$subset = $results->fetchAll(PDO::FETCH_ASSOC);
return $subset;
}
2 Answers

tim221
18,657 PointsUsually I would suggest getting a descriptive error message:
}catch (Exception $e) {
echo $e->getMessage();
exit;
}
However in this case, you might find the problem on this line:
FORM products

Leonard Foster
14,806 PointsLMAO thank you Tim I was freaking out for a long time on this I'm sorry I wasted your time