
Nadir Latif - 2016-03-21 20:11:55
Another important backward incompatible change in php 7 is the removal of mysql extension.
The mysql extension was deprecated in version 5.5 and has been removed in version 7.
If someone wants to upgrade their code so it works with php 7 then they will have to replace the mysql_* function calls.
The easiest way to replace mysql_* functions is to replace them with mysqli_* functions.