Forum Moderators: phranque

Message Too Old, No Replies

Please tell me what this means?

page.php?m_id=Mw==&s_id=MA==

         

bartainer

6:01 pm on Jan 7, 2007 (gmt 0)

10+ Year Member



Hello.

Please tell me what (page.php?m_id=Mw==&s_id=MA==) means.

Thanks in advance.

jdMorgan

8:24 pm on Jan 7, 2007 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



It is a URL, page.php, with a query string appended to it.

The query string has "meaning" only to the page.php script. Assuming that it is valid, the variable "Mw" is assigned the value of a literal equal sign, and the variable "s_id" (probably "session ID") is assigned the value "MA==".

These variables have "meaning" only in the context of the page.php script, so that about all you can say about it.

Jim

coopster

10:01 pm on Jan 7, 2007 (gmt 0)

WebmasterWorld Administrator 10+ Year Member



Just a minor correction, certainly an oversight by a guy like jdMorgan ;)

The GET name/value pairs are actually as follows ...

Name  Value 
---- -----
m_id Mw==
s_id MA==

bartainer

3:28 am on Jan 8, 2007 (gmt 0)

10+ Year Member



Wow! Very excellent and as always I learn from this site.