OK, probably an easy question.
If I am trying to pass a date through the URL, I cannot do anything with it $_REQUEST["date"];
e.g. date("Y-m-d",$_REQUEST["date"]); = no worky
Now in Java and every other language I have ever worked with we could cast these strings into dates, integers, etc, etc, etc. (Convert.ToDate, toint, etc...)
I tried to find 'cast' on php's site and didn't come up with anything. Does this mean one must explode 'everything' by hand just to use information? like explode it out and mktime(0,0,bleh) to put it back together?
That can't be......