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 trialAustin Sun
9,496 PointsUsing LIMIT with Offset
The question is "I have the following statement prepared SELECT * FROM users LIMIT ? . Fill in what I should put in to the last parameter of the bindParam call ____"
I've tried everything to find an answer to this in previous videos and wasn't able to find it yet. Someone please help. :/
3 Answers
Carlos E. Quiroz Rojas
15,278 PointsRemember is a SQL Statement so you need too tell PHP how is going to us whit this " PDO::PARAM_INT " so this is the bindparam
Mazen Itani
9,134 PointsPDO::PARAM_INT
Austin Sun
9,496 Pointsthanks Carlos E. Quiroz Rojas!