View Single Post
Old 03-08-2006, 11:44 PM   #4 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,529
sde is on a distinguished road
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.
sde is offline   Reply With Quote