View Single Post
  #2  
Old 09-22-2003, 22:03
Lunar_Dust
 
Posts: n/a
Why would you need this? Do you have an example page which is in some way "protected" ? Most "encryption" schemes just convert the text to hex code (like A becomes %41), you could write a simple parser to scan thru and convert back..

Another option would be to base64 encode, but this might actually be similar to the above. In any manner, the server's php probably isn't encrypted, since the server has to parse it. I would think more like the results are being 'encrypted' before being sent to your browser.


-Lunar

Last edited by Lunar_Dust; 09-22-2003 at 22:07.
Reply With Quote