this is in the config.php5 file:
<?php
$host_name = "dbxxxxxxxxx.db.1and1.com";
$db = "xxxxxxxxx";
$user_name = "dboxxxxxxx";
$password = "password";
$connect = mysql_connect($host_name, $user_name,
$password);
My host upgraded me to php7 without my consent. When they did that the mysql_connect function failed to connect returning an err code 'unable to connect.....' They reset php back to 5.5 version but I am still not connecting. this is the code that attempts to connect by calling the config file
some code here: <* require_once("config.php5");*> some code here:
Up until two days ago this program has worked for over 20 years. Does anybody have any ideas?