The upgrade to PHP7 removes support for the old mysql driver. Everything will now need to use the mysqli driver.
In the config.inc.php:
If coding PHP manually, the prefix to the function names is mysqli instead of mysql, e.g.: mysql_connect becomes mysqli_connect.