I wouldn't call this encryption. "cereal box decoder ring", maybe. If you want encryption, then use the mcrypt functions.At best this is obfuscation.
I wouldn't call this encryption. "cereal box decoder ring", maybe. If you want encryption, then use the mcrypt functions.At best this is obfuscation.
The problem is that you're doing fopen() before doing file_get_contents. Using mode w+ truncates the file to 0-bytes as part of the fopen() call.So by the time file_get_contents comes up, you've deleted the original file. $fs = file_get_contents(...); $fh = fopen(..., 'w+'); in that order will fix the problem.
I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.