PHP short_open_tag = On should not be used
After a fresh installation you could find that PHP short_open_tag disabled by default in php.ini file.   You can check by using phpinfo() PHP function. Under PHP Core setting you can find as below   Directive Local Value Master Value short_open_tag Off Off   If “short_open_tag” is found off in your php.ini file then you…

Solved: PHP move_uploaded_file and copy function both is not uploading the file in destination directory
Fixed: PHP move_uploaded_file() and copy() function is not uploading the file In the programming field we usually need to upload the files in the folders. In PHP, we have 2 functions for the purpose. 1st is move_uploaded_file() 2nd one is copy().   I think you know well, what the difference between these two copy() vs…

How to install ioncube loader in xampp
1. Find your PHP version using phpinfo() function. You should need to know the version when you download the ionCube loaders.   x86/ppc/sparc packages are for 32 bit systems; x86-64/ppc64 packages are for 64 bit systems.   The Windows non-TS Loaders are for use on a Windows system where a phpinfo() page shows that PHP… (1 comment)

get_magic_quotes_gpc() There is a PHP feature or function called as magic quotes that was created to help protect newbie programmers from writing bad form processing code. Magic quotes will automatically escape risky form data that might be used for SQL Injection with a backslash \.   The characters escaped by PHP magic quotes includes :…