I have thousands of instances of calls to get_magic_quotes_gpc. Since get_magic_quotes_gpc is going away, I found a recommendation to simply replace call with "false".
Then the code:
if (get_magic_quotes_gpc()) {
$cell = stripslashes($cell);
}
would become:
if (false) {
$cell = stripslashes($cell);
}
This would require finding and replacing each instance.
I have made a few updates to test the one-at-time solution but is there a bulk or universal solution or do I have to hire additional programmers to sift thru the files? Otherwise when PHP V8 comes along, there are going to be a lot crashes.