You can change it to
PHP Code:
$connection = mysqli_connect( 'host', 'username', 'password', 'database');
to make it easier.
I assume that it also makes use of other mysql_* functions, I would double check that.
To port a mysql_query to mysqli_query, you need to specify the connection variable as the first argument and the second argument will be the actual query.