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 trial

PHP Integrating PHP with Databases Filtering Input for Queries Creating the Search Function

After using the search function I get "Unable to retrieved data"

as the title said, after I use the search function a blank page appear and say "Unable to retrieved data" I have watched the video multiple times but I can find the issue. If anyone can help me I will be very grateful. Thanks in advance.

Here is my code https://gitlab.com/Bryken00173/treehouse_tut.git

1 Answer

Mateusz Zackiewicz
Mateusz Zackiewicz
6,817 Points

Hi, in your functions.php file in line 291 you have:

$results = $db->prepare($sql . "LIMIT ? OFSSET ?")

when it should be: $results = $db->prepare($sql . "LIMIT ? OFFSET ?")

You've made a typo in OFFSET. Should work now. ;-)