Hay dos problemas:
1- En tu consulta $busca1 deberias seleccionar tanto nombre como telefono, pero filtrar de acuerdo a: SELECT nombre, telefono FROM nombres WHERE
telefono = '{$row_Recordset1['CALLER']}'
2- Debes ejecutar y leer la consulta para poder manipular los datos:
Código PHP:
Ver original// verifica si obtuviste algun resultado
} else
$nombre = $telefono = '--';
// Ahora si comparas:
if ($row_Recordset1['CALLER'] == $telefono) {
}