PHP - Superglobals and Web Context
Given the URL
site.com/index.php?category=books, how would you retrieve the value 'books' in PHP?site.com/index.php?category=books, how would you retrieve the value 'books' in PHP?URL parameters are accessed using the $_GET superglobal.
Access the parameter by its key: $_GET['category'].
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions