The single quotes (' ') are the problem. You can't pass php array variables like you would in a regular string as MySQL will handle the quotes differently.
Try this
$query = "SELECT * FROM `customers` WHERE `customers_telephone` = '" . $value['phone_number'] . "'";