--- "Gryffyn, Trevor" <[EMAIL PROTECTED]> wrote:
> You're right though, $_GET and $_POST and such are already an
> associative array. I actually think I was thinking of a function
> that parsed a URL itself, regardless of whether it was submitted
> or not.

This makes absolutely no sense to me. What do you mean by submitted? How
would a PHP script be executed at all if the browser never sends a
request?

> I'm all kinds of mixed up today, so I apologize for being kind
> of scrambled in the brain.

No problem. :-)

> You understand I'm talking about parsing the URL, not juggling
> $_GET data, right?

GET data is passed in the query string of the URL. This is what you're
asking:

    Is there a way to access GET data? Yes, I know about $_GET,
    but I don't want PHP's help - I want to parse the query
    string myself. Can PHP help me do this?

I'm not sure how else to explain it, but it seems like you might be
confused about the GET request method. Is there a reason why you don't
want to use $_GET?

Hope that helps.

Chris

=====
Chris Shiflett - http://shiflett.org/

PHP Security - O'Reilly
     Coming December 2004
HTTP Developer's Handbook - Sams
     http://httphandbook.org/
PHP Community Site
     http://phpcommunity.org/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to