Pessoal ainda não estou conseguindo.
<?php
include 'connections/conexao.php';
include 'connections/functions.php';
$select = "SELECT
A.ID, C.SIGLA_UF AS UF, B.DESCR_CIDADE AS CIDADE, A.TELEFONE1, A.TELEFONE2,
CASE WHEN A.TIPO_CLI = 'PF' THEN A.NOME_CONTATO ELSE A.NOME_FANTASIA END AS CLINTE,
CASE WHEN A.TIPO_CLI = 'PF' THEN A.CPF ELSE A.CNPJ END AS DOC_CLINTE, A.EMAIL
FROM TB_CLIENTE_PJ_PF A INNER JOIN TB_CIDADE B ON(A.ID_CIDADE =
B.ID)
INNER JOIN TB_UF C ON(B.ID_UF =
C.ID) ORDER BY
A.ID DESC";
$exec = odbc_exec($con, $select) or die(odbc_errormsg());
$select2 = "PR_DADOS_DESENVOLVEDOR";
$exec2 = odbc_do($con, $select2) or die(odbc_errormsg());
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Sistema Administrativo</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/static.css" rel="stylesheet">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="ico/favicon144.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="ico/favicon114.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="ico/favicon72.png">
<link rel="apple-touch-icon-precomposed" href="ico/favicon57.png">
<link rel="shortcut icon" href="ico/favicon.png">
</head>
<body>
<div class="container">
<table class="table table-striped">
<tr>
<th>Cliente</th>
<th>Doc</th>
<th>E-mail</th>
<th>Telefone 1</th>
<th>Telefone 2</th>
<th>Cidade/UF</th>
</tr>
<?php while($array = odbc_fetch_array($exec)) { ?>
<tr>
<td><?php echo utf8_encode($array['CLINTE']); ?></td>
<td><?php echo arrumaDoc($array['DOC_CLINTE']); ?></td>
<td><?php echo $array['EMAIL']; ?></td>
<td><?php echo arrumaTelefone($array['TELEFONE1']); ?></td>
<td><?php echo arrumaTelefone($array['TELEFONE2']); ?></td>
<td><?php echo utf8_encode($array['CIDADE']); ?>/<?php echo $array['UF']; ?></td>
</tr>
<?php } ?>
</table>
<div class="clearFull"><!-- --></div>
<table class="table table-striped">
<tr>
<th>Nome</th>
<th>E-mail</th>
<th>Celular</th>
</tr>
<?php while($array2 = odbc_fetch_array($exec2)) { ?>
<tr>
<td><?php echo utf8_encode($array2['NOME']); ?></td>
<td><?php echo $array2['EMAIL']; ?></td>
<td><?php echo arrumaTelefone($array2['CELULAR']); ?></td>
</tr>
<?php } ?>
</table>
</div>
<script src="js/jquery.js"></script>
<script src="js/main.js"></script>
<script src="js/bootstrap.js"></script>
</body>
</html>