Chris wrote:
> ioannes wrote:
>> I didn't get any brave response on this, but given the other thread on
>> 'encription' I was wondering could anyone decrypt the __VIEWSTATE string
>> at the end of this message.  It is part of the input page whose results
>> page I am trying to retrieve back onto my server for further php work. 
>> I replicated the source from that input page onto a page on my server,
>> and when I click the submit button it correctly goes to the target
>> results page, on the other site though, however it did not work without
>> the whole of the string below.  The experiment proved though that
>> without the __VIEWSTATE the results page will not return.  So I am just
>> wondering, as I have not been able to repeat this using curl, what the
>> **** is included in that string. There's a challenge for anyone with
>> whatever resources it takes.
> 
> echo base64_decode($view_state_string);

or maybe

print_r(base64_decode($view_state_string));

I don't know if it will return a string or an array or something else.

-- 
Postgresql & php tutorials
http://www.designmagick.com/

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

Reply via email to