Hi Daniel,

> variables, but as part of the Content of the HTTP request. Here is a sample:

> POST
> 
>/~rafael/sms_mail/cliente.dcs.php?NotificationProtocolVersion=1.0.0.0&ApplicationName=NPlex&ApplicationVersion=6.0.037&RequestType=NewMsg&RequestTime=01/15/2002%2014:08:23&ServerType=email&[EMAIL PROTECTED]&MessageType=email&[EMAIL PROTECTED]%3E&Subject=TST26&MessageReceivedTime=01/15/2002%2014:08:23
> 
> HTTP/1.0

in your php script, try to echo the passed param directly as variable,
for example $NotificationProtocolVersion or $ApplicationName
if it show the correct value, then you're lucky.

otherwise, you have to parse the HTTP request.
parse_str($QUERY_STRING);
// after this you will have the $NotificationProtocolVersion variable

--
Jimmy
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
A woman is like your shadow; follow her, she flies; fly from her, she follows.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to