I have few thousand users searching my MySQL database few times per day with PHP script. This delivers big load on the server. I heard that encoding my PHP script to base64 will make the proccess faster and will take some load off the server. Isnt that what Zend encoder does?
Thats the question. Is it true or not about base64?
Thank you in advance.
//not encoded:
if ($hi) {
print "Hello World!";
}
else {
print "oops!";
}
//encoded:
aWYgKCRoaSkgew0KIHByaW50ICJIZWxsbyBXb3JsZCEiOw0KIH0NCmVsc2Ugew0KIHByaW50ICJvb3BzISI7DQogfQ==