I had a quick question about encoding files. Will encoding work if i have a script which requires another 'config' script, which requires three class files, all of which are to be encoded?
for example:
index.php:
require('config.php');
config.php:
require('class1.php');
require('class2.php');
require('class3.php');
classX.php:
class .....