Hi,
trying to figure out how to take:
index.php?method=action&id=110
and take method and id and put their values into seperate values, rather than just reading the whole $QUERY_STRING function. Can anyone help?
-Dan Joseph
$QUERY_STRING isn't a function is a variable... try using the parse_str() function, I think that's what you want.
Thanks! that's what I am looking for!