I'm having several interrelated issues with my Query String and PHP script.
Here is a sample URL that I am working on...
http://local.debbie/account/view-pm/incoming/
And here is my PHP code...
PHP Code:
if (isset($_GET['msgview']) && $_GET['msgview']){
// Message-View found in URL.
// Set Case.
$msgView = strtolower($_GET['msgview']);
echo $msgView . "<br />";
When I load the URL above, my test script echoes this...
Shouldn't my $_GET just be grabbing "incoming" and not the trailing slash?
Debbie