I have the following code that does the freight calculation. The calculation works perfectly, the problem is if I enter the zip code 11111111, it does not say that the zip is invalid.
$correios = "http://ws.correios.com.br/calculador/CalcPrecoPrazo.aspx?nCdEmpresa=&sDsSenha=&sCepOrigem=XXXXXXXX&sCepDestino=".$_POST["cepDestino"]."&nVlPeso=".$somaPeso."&nCdFormato=1&nVlComprimento=".$jmProdutos->Comprimento."&nVlAltura=".$somaAltura."&nVlLargura=".$jmProdutos->Largura."&sCdMaoPropria=s&nVlValorDeclarado=0&sCdAvisoRecebimento=s&nCdServico=04014,04510&nVlDiametro=0&StrRetorno=xml";
$correiosInfo = simplexml_load_file($correios);
foreach($correiosInfo->cServico as $linhas) {
if($linhas->Erro == 0) {
// Ok.. aqui vou listar os valores
}else{
echo $linhas->MsgErro;
}
}