Using $REQUEST_URI; I have the following string that I want to parse:
main/index2.php?page=recipe_applepie
I want to pull out anything between "=" and "_" (in this case, "recipe") and assign a variable that value.
Basically, I want to end up with:
$category = ("recipe");
TIA for any help!
Tim