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