index.php?a=foo&b=bar
PHP Code:
echo $_GET['a']; // prints: foo
echo $_GET['b']; // prints: bar
at the top of your page, put:
echo $_GET['recipe']; to see if you can print what is in the url.
if you really want to know more about arrays in php, you may want to look at
this article i wrote a little while back.