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 Limiting Records in SQL Setting Up Pagination Variables

Where/how is the value "pg" defined ?

Alena uses "pg" in the if (ISSET($_GET["pg"])) condtional for for the if block that sets the current_page varable. I cannot see where we are getting "pg" from.

Thanks all for your help!

2 Answers

Hi Matt!

She doesn't show an example of it, unfortunately, but "pg" would come from the queryString.

You would have to call the page from the browser address bar something like this:

IntegratingPHPwithDatabasesOnLocalHostOrWorkspace/catalog.php?pg=pageNameOrNumber

This being where the $_GET["pg"] is created:

catalog.php?pg=

Keep in mind that IntegratingPHPwithDatabasesOnLocalHostOrWorkspace and pageNameOrNumber are just made up for the example.

More info:

https://www.w3schools.com/tags/ref_httpmethods.asp

I hope that helps.

Stay safe and happy coding!

Thanks Peter, that is very helpful as always :)