you are correct.
in your information above, you refer to
$_GET['recipe'] as
$_GET('recipe'). (note, red is bad

)
you're not using that syntax in your code right? $_GET is an array of the URL variables, and in PHP, brackets after a variable name indicate your are retrieving one element of that array. parenthasis indicate you are calling a function.