Usamos cookies para medir audiência e melhorar sua experiência. Você pode aceitar ou recusar a qualquer momento. Veja sobre o iMasters.
Oi pessoal,
Esse fórum é para mim muito util, estava a um tempão devendo a publicação de algum script para retribuir as minhas pesquisas.
Ai vai:
Salve como testecep.php
<?########################## AUTORA: Tatiane Gonzaga ## CONTATO: tati@soportais.com.br ##########################if ($_POST){ $buscacep = "[http://www.correios.com.br/servicos/falecomoscorreios/ctBuscaEndereco.cfm?cep=$cep";](http://www.correios.com.br/servicos/falecomoscorreios/ctBuscaEndereco.cfm?cep=%24cep) $fp = fopen($buscacep,"r"); $cepres = fread($fp,8146); fclose ($fp); $arrcep = split("'",$cepres); echo "Endereço: $arrcep[1]<br>"; echo "Bairro: $arrcep[3]<br>"; echo "Cidade: $arrcep[5]<br>"; echo "UF: $arrcep[7]<br>";}?><form method="POST" action=testecep.php> <div align="center"> <table> <tr> <td colspan="2"> <p align="center">Digite o CEP para ver o Endereço</td> </tr> <tr> <td>CEP</td> <td><input type="text" name="cep" size="20" value="<?=$cep;?>"></td> </tr> <tr> <td> </td> <td><input type="submit" value="Buscar" name="buscar"></td> </tr> </table> </div></form>eu achei show teste funciou legal aogra será que é estavel e seguro usar assim? será que dá para basear um sistema nisso depois o correio tirar essa url do ar?
Muito legal esse exemplo! :joia:/>
Felipe, acho que dá pra criar um sistema estável baseado nisso, sim... você cria de forma que, se o correio tirar essa página do ar, não dê erros... o usuário só terá que digitar todos os campos. Mas até aí, é isso que aconteceria se você nem se arriscasse a usá-lo, mesmo... ;)/> Eu criei um exemplo bem legal pra quem estiver dando os primeiros passos com o AJAX (assim como eu)... Ele atualiza os campos sem dar reload na página (assim que perder o foco na caixa do CEP). :D/>
É só salvar estes dois arquivos na mesma pasta e executar o "formulario.php".
Abraços!
endereco.txt.php
> <?php/**
* Busca endereço através do CEP passado pela "querystring" e
* retorna um documento de texto com os parâmetros separados
* por ponto e vírgula.
*
* Carlos Reche (carlosreche@yahoo.com)
* 23.09.2005
*
* baseado no exemplo de Tatiane Gonzaga (tati@soportais.com.br)
* publicado no fórum iMasters ([http://forum.imasters.com.br/](http://forum.imasters.com.br/))
*/
$cep = isset($_GET["cep"]) ? preg_replace("/[^\d]/", "", $_GET["cep"]) : false;
$numero = isset($_GET["numero"]) ? trim($_GET["numero"]) : "";
$logradouro = "";
$bairro = "";
$localidade = "";
$uf = "";
if ($cep) {
$res = @file_get_contents("[http://www.correios.com.br/servicos/falecomoscorreios/ctBuscaEndereco.cfm?cep="](http://www.correios.com.br/servicos/falecomoscorreios/ctBuscaEndereco.cfm?cep=) . $cep);
if ($res) {
preg_match_all("/\.value\s*=\s*[\"\']([^\"\']*)[\"\']/", $res, $matches);
$logradouro = $matches[1][0];
$bairro = $matches[1][1];
$localidade = $matches[1][2];
$uf = $matches[1][3];
}
}
header("Content-type: text/plain");
echo $logradouro . ";" . $numero . ";" . $bairro . ";" . $localidade . ";" . $uf . ";" . $cep;
?>
formulario.php
> <html> <head>
<title>Exemplo de Busca de Endereço por CEP - Carlos Reche</title>
<script type="text/javascript">
function addEvent(obj, evt, func) {
if (obj.attachEvent) {
return obj.attachEvent(("on"+evt), func);
} else if (obj.addEventListener) {
obj.addEventListener(evt, func, true);
return true;
}
return false;
}
function XMLHTTPRequest() {
try {
return new XMLHttpRequest(); // FF, Safari, Konqueror, Opera, ...
} catch(ee) {
try {
return new ActiveXObject("Msxml2.XMLHTTP"); // activeX (IE5.5+/MSXML2+)
} catch(e) {
try {
return new ActiveXObject("Microsoft.XMLHTTP"); // activeX (IE5+/MSXML1)
} catch(E) {
return false; // doesn't support
}
}
}
}
function buscarEndereco() {
var campos = {
cep: document.getElementById("cep"),
logradouro: document.getElementById("logradouro"),
numero: document.getElementById("numero"),
bairro: document.getElementById("bairro"),
localidade: document.getElementById("localidade"),
uf: document.getElementById("uf")
};
var ajax = XMLHTTPRequest();
ajax.open("GET", ("./endereco.txt.php?cep=" + campos.cep.value.replace(/[^\d]*/, "")), true);
ajax.onreadystatechange = function() {
if (ajax.readyState == 1) {
campos.logradouro.disabled = true;
campos.bairro.disabled = true;
campos.localidade.disabled = true;
campos.uf.disabled = true;
campos.logradouro.value = "carregando...";
campos.bairro.value = "carregando...";
campos.localidade.value = "carregando...";
} else if (ajax.readyState == 4) {
var r = ajax.responseText, i, logradouro, numero, bairro, localidade, uf;
logradouro = r.substring(0, (i = r.indexOf(';')));
r = r.substring(++i);
numero = r.substring(0, (i = r.indexOf(';')));
r = r.substring(++i);
bairro = r.substring(0, (i = r.indexOf(';')));
r = r.substring(++i);
localidade = r.substring(0, (i = r.indexOf(';')));
r = r.substring(++i);
uf = r.substring(0, (i = r.indexOf(';')));
campos.logradouro.disabled = false;
campos.bairro.disabled = false;
campos.localidade.disabled = false;
campos.uf.disabled = false;
campos.logradouro.value = logradouro;
campos.bairro.value = bairro;
campos.localidade.value = localidade;
i = campos.uf.options.length;
while (i--) {
if (campos.uf.options*.getAttribute("value") == uf) {*
break;
}
}
campos.uf.selectedIndex = i;
}
};
ajax.send(null);
}
window.addEvent(
window,
"load",
function() {window.addEvent(document.getElementById("cep"), "blur", buscarEndereco);}
);
* </script>*
* <style type"text/css">*
body {
margin: 0;
padding: 30px 50px;
font: 70% Verdana, Arial, sans-serif;
}
h1 {font-size: 140%;}
form {margin: 30px 50px 0;}
form fieldset {
float: left;
padding: 0 20px 10px;
background: #e5e5e5;
border-style: solid;
border-width: 1px 2px 2px 1px;
border-color: #AAA;
}
form legend {
margin-bottom: 15px;
padding: 5px 10px;
background: #F5F5F5;
border-style: solid;
border-width: 1px 2px 2px 1px;
border-color: #AAA;
font-weight: bold;
}
form p {
float: left;
clear: both;
margin: 0;
}
form label {
float: left;
clear: left;
display: block;
width: 90px;
height: 30px;
margin-right: 5px;
padding-top: 3px;
cursor: pointer;
text-align: right;
color: #C00;
}
form label.numero {clear: none; width: 60px;}
form label.uf {clear: none; width: 30px;}
form input {float: left; width: 200px;}
form input#numero, form input#uf {width: 50px;}
form input#bt-submit {width: 100px; margin-left: 150px;}
address {clear: both; padding: 30px 0;}
* </style>*
* </head>*
* <body>*
* <h1>Exemplo de Busca de Endereço por CEP</h1>*
* <form action="#" method="post">*
* <fieldset>*
* <legend>Dados Pessoais</legend>*
* <p>*
* <label for="nome">Nome</label>*
* <input type="text" name="nome" id="nome" />*
* </p>*
* <p>*
* <label for="email">E-mail</label>*
* <input type="text" name="email" id="email" />*
* </p>*
* <p>*
* <label for="cep">CEP</label>*
* <input type="text" name="cep" id="cep" />*
* </p>*
* <p>*
* <label for="logradouro">Logradouro</label>*
* <input type="text" name="logradouro" id="logradouro" />*
* <label for="numero" class="numero">Número</label>*
* <input type="text" name="numero" id="numero" />*
* </p>*
* <p>*
* <label for="complemento">Complemento</label>*
* <input type="text" name="complemento" id="complemento" />*
* </p>*
* <p>*
* <label for="bairro">Bairro</label>*
* <input type="text" name="bairro" id="bairro" />*
* </p>*
* <p>*
* <label for="localidade">Localidade</label>*
* <input type="text" name="localidade" id="localidade" />*
* <label for="uf" class="uf">UF</label>*
* <select id="uf">*
* <option value="">-- selecione --</option>*
* <option value="AC">Acre</option>*
* <option value="AL">Alagoas</option>*
* <option value="AP">Amapá</option>*
* <option value="AM">Amazonas</option>*
* <option value="BA">Bahia</option>*
* <option value="CE">Ceará</option>*
* <option value="DF">Distrito Federal</option>*
* <option value="ES">Espírito Santo</option>*
* <option value="GO">Goiás</option>*
* <option value="MA">Maranhão</option>*
* <option value="MT">Mato Grosso</option>*
* <option value="MS">Mato Grosso do Sul</option>*
* <option value="MG">Minas Gerais</option>*
* <option value="PA">Pará</option>*
* <option value="PB">Paraíba</option>*
* <option value="PR">Paraná</option>*
* <option value="PE">Pernambuco</option>*
* <option value="PI">Piauí</option>*
* <option value="RJ">Rio de Janeiro</option>*
* <option value="RN">Rio Grande do Norte</option>*
* <option value="RS">Rio Grande do Sul</option>*
* <option value="RO">Rondônia</option>*
* <option value="RR">Roraima</option>*
* <option value="SC">Santa Catarina</option>*
* <option value="SP">São Paulo</option>*
* <option value="SE">Sergipe</option>*
* <option value="TO">Tocantins</option>*
* </select>*
* </p>*
* <p>*
* <input type="submit" id="bt-submit" value="Enviar" />*
* </p>*
* </fieldset>*
* </form>*
* <address>*
* Carlos Reche (<a href="mailto:carlosreche@yahoo.com">carlosreche@yahoo.com</a>)*
* </address>*
* </body>*
*</html>*Muito legal Illidan.O q é Ajax???
AJAX significa "Asynchronous JavaScript and XML"... basicamente, é uma técnica de desenvolvimento em que você pode fazer uma requisição para o servidor (tanto GET quanto POST) sem ter que dar reload na página toda. Você cria um código javascript pra fazer isso... (através de um objeto do tipo XMLHTTPRequest. O IE não suporta esse objeto, mas tem como contornar :)/> ).
Atualmente fala-se muito no AJAX... no entanto, ele tem algumas limitações... por exemplo, se você cria todo o seu site assim, os links que o usuário vai acessando não ficam no histórico do browser (pois na verdade o usuário não saiu da primeira página). Aí, se em algum momento ele clicar em "voltar", ele sai do site... volta pra página acessada anteriormente. :/
Acho que a aplicação mais conhecida que usa AJAX é o Google Maps. Se você ver, ele vai carregando as novas partes dos mapas sem carregar a página inteira.
[]'s!
nossa fico rulasso parabens Illidan, você ainda vai me ensinar a fazer layout em CSS http://forum.imasters.com.br/public/style_emoticons/default/yay.gif/>
tpo, tinha 1 bugzin, ele nao mostrava acentos (bug do proprio Xml), entao eu peguei para arrumar e aproveitei e puis um "validador" de cep e diminui um pouco o code, é besteirinha, so para eu contribuir tambem ^^
aqui vai:
>
<html>
<head>
<title>Exemplo de Busca de Endereço por CEP - Carlos Reche</title>
<script type="text/javascript">
function addEvent(obj, evt, func) {
if (obj.attachEvent) {
return obj.attachEvent(("on"+evt), func);
} else if (obj.addEventListener) {
obj.addEventListener(evt, func, true);
return true;
}
return false;
}
function XMLHTTPRequest() {
try {
return new XMLHttpRequest(); // FF, Safari, Konqueror, Opera, ...
} catch(ee) {
try {
return new ActiveXObject("Msxml2.XMLHTTP"); // activeX (IE5.5+/MSXML2+)
} catch(e) {
try {
return new ActiveXObject("Microsoft.XMLHTTP"); // activeX (IE5+/MSXML1)
} catch(E) {
return false; // doesn't support
}
}
}
}
function buscarEndereco() {
var campos = {
validcep: document.getElementById("validcep"),
cep: document.getElementById("cep"),
logradouro: document.getElementById("logradouro"),
numero: document.getElementById("numero"),
bairro: document.getElementById("bairro"),
localidade: document.getElementById("localidade"),
uf: document.getElementById("uf")
};
var ajax = XMLHTTPRequest();
ajax.open("GET", ("./endereco.txt.php?cep=" + campos.cep.value.replace(/[^\d]*/, "")), true);
ajax.onreadystatechange = function() {
if (ajax.readyState == 1) {
campos.logradouro.disabled = true;
campos.logradouro.value = "carregando...";
campos.bairro.disabled = true;
campos.localidade.disabled = true;
campos.bairro.value = "carregando...";
campos.uf.disabled = true;
campos.localidade.value = "carregando...";
} else if (ajax.readyState == 4) {
if(ajax.responseText == false){
campos.validcep.innerHTML = "Cep invalido !!!";
campos.logradouro.disabled = false;
campos.logradouro.value = "";
campos.bairro.disabled = false;
campos.localidade.disabled = false;
campos.bairro.value = "";
campos.uf.disabled = false;
campos.localidade.value = "";
}else{
campos.validcep.innerHTML = "";
var r = ajax.responseText, i, logradouro, numero, bairro, localidade, uf;
logradouro = r.substring(0, (i = r.indexOf(':')));
campos.logradouro.disabled = false;
campos.logradouro.value = unescape(logradouro.replace(/\+/g," "));
r = r.substring(++i);
bairro = r.substring(0, (i = r.indexOf(':')));
campos.bairro.disabled = false;
campos.bairro.value = unescape(bairro.replace(/\+/g," "));
r = r.substring(++i);
localidade = r.substring(0, (i = r.indexOf(':')));
campos.localidade.disabled = false;
campos.localidade.value = unescape(localidade.replace(/\+/g," "));
r = r.substring(++i);
uf = r.substring(0, (i = r.indexOf(';')));
campos.uf.disabled = false;
i = campos.uf.options.length;
while (i--) {
if (campos.uf.options*.getAttribute("value") == uf) {*
break;
}
}
campos.uf.selectedIndex = i;
}
}
};
ajax.send(null);
}
window.addEvent(
window,
"load",
function() {window.addEvent(document.getElementById("cep"), "blur", buscarEndereco);}
);
*</script>*
*<style type"text/css">*
body {
margin: 0;
padding: 30px 50px;
font: 70% Verdana, Arial, sans-serif;
}
h1 {font-size: 140%;}
form {margin: 30px 50px 0;}
form fieldset {
float: left;
padding: 0 20px 10px;
background: #e5e5e5;
border-style: solid;
border-width: 1px 2px 2px 1px;
border-color: #AAA;
}
form legend {
margin-bottom: 15px;
padding: 5px 10px;
background: #F5F5F5;
border-style: solid;
border-width: 1px 2px 2px 1px;
border-color: #AAA;
font-weight: bold;
}
form p {
float: left;
clear: both;
margin: 0;
}
form label {
float: left;
clear: left;
display: block;
width: 90px;
height: 30px;
margin-right: 5px;
padding-top: 3px;
cursor: pointer;
text-align: right;
color: #C00;
}
form label.numero {clear: none; width: 60px;}
form label.uf {clear: none; width: 30px;}
form input {float: left; width: 200px;}
form input#numero, form input#uf {width: 50px;}
form input#bt-submit {width: 100px; margin-left: 150px;}
address {clear: both; padding: 30px 0;}
* </style>*
* </head>*
* <body>*
* <h1>Exemplo de Busca de Endereço por CEP</h1>*
* <form action="#" method="post">*
* <fieldset>*
* <legend>Dados Pessoais</legend>*
* <p>*
* <label for="nome">Nome</label>*
* <input type="text" name="nome" id="nome" />*
* </p>*
* <p>*
* <label for="email">E-mail</label>*
* <input type="text" name="email" id="email" />*
* </p>*
* <p>*
* <label for="cep">CEP</label>*
* <table><input type="text" name="cep" id="cep" />*
* <div id="validcep" style="color: #FF0000;"></div></table>*
* </p>*
* <p>*
* <label for="logradouro">Logradouro</label>*
* <input type="text" name="logradouro" id="logradouro" />*
* <label for="numero" class="numero">Número</label>*
* <input type="text" name="numero" id="numero" />*
* </p>*
* <p>*
* <label for="complemento">Complemento</label>*
* <input type="text" name="complemento" id="complemento" />*
* </p>*
* <p>*
* <label for="bairro">Bairro</label>*
* <input type="text" name="bairro" id="bairro" />*
* </p>*
* <p>*
* <label for="localidade">Localidade</label>*
* <input type="text" name="localidade" id="localidade" />*
* <label for="uf" class="uf">UF</label>*
* <select id="uf">*
* <option value="">-- selecione --</option>*
* <option value="AC">Acre</option>*
* <option value="AL">Alagoas</option>*
* <option value="AP">Amapá</option>*
* <option value="AM">Amazonas</option>*
* <option value="BA">Bahia</option>*
* <option value="CE">Ceará</option>*
* <option value="DF">Distrito Federal</option>*
* <option value="ES">Espírito Santo</option>*
* <option value="GO">Goiás</option>*
* <option value="MA">Maranhão</option>*
* <option value="MT">Mato Grosso</option>*
* <option value="MS">Mato Grosso do Sul</option>*
* <option value="MG">Minas Gerais</option>*
* <option value="PA">Pará</option>*
* <option value="PB">Paraíba</option>*
* <option value="PR">Paraná</option>*
* <option value="PE">Pernambuco</option>*
* <option value="PI">Piauí</option>*
* <option value="RJ">Rio de Janeiro</option>*
* <option value="RN">Rio Grande do Norte</option>*
* <option value="RS">Rio Grande do Sul</option>*
* <option value="RO">Rondônia</option>*
* <option value="RR">Roraima</option>*
* <option value="SC">Santa Catarina</option>*
* <option value="SP">São Paulo</option>*
* <option value="SE">Sergipe</option>*
* <option value="TO">Tocantins</option>*
* </select>*
* </p>*
* <p>*
* <input type="submit" id="bt-submit" value="Enviar" />*
* </p>*
* </fieldset>*
* </form>*
* <address>*
* Carlos Reche (<a href="mailto:carlosreche@yahoo.com">carlosreche@yahoo.com</a>)*
* </address>*
* </body>*
*</html>*
>
<?php
*/***
** Busca endereço através do CEP passado pela "querystring" e*
** retorna um documento de texto com os parâmetros separados*
** por ponto e vírgula.*
***
** Carlos Reche (carlosreche@yahoo.com)*
** 23.09.2005*
***
** baseado no exemplo de Tatiane Gonzaga (tati@soportais.com.br)*
** publicado no fórum iMasters (http://forum.imasters.com.br/)*
** acentos by redneck*
**/*
$cep = isset($_GET["cep"]) ? preg_replace("/[^\d]/", "", $_GET["cep"]) : false;
if ($cep) {
$res = implode("", file("http://www.correios.com.br/servicos/falecomoscorreios/ctBuscaEndereco.cfm?cep=" . $cep));
preg_match_all("/\.value\s=\s\"\'[\"\']/", $res, $matches);*
list($logradouro, $bairro, $localidade, $uf) = $matches[1];
}
header("Content-type: text/plain");
if(!empty($logradouro) && !empty($bairro) && !empty($localidade) && !empty($uf))
echo urlencode($logradouro) . ":" . urlencode($bairro) . ":" . urlencode($localidade) . ":" . $uf . ";";
else
echo false;
?>
*testado em IE 6.0 e FF 1.4** *
[]'s !!! parabens a vcs ai pelo script vai ajudar muita gente
ps: eu nao esqueci das minhas aulas de CSS nao em ? :rolleyes:/>
*ps2: fico meio ruim o posicionamento em IE, nao manjo nada de CSS ** :huh:/>*
Puxa, q massa esse AJAX.Posta aí uns links de tutos e conceitos, pra gente. :D/>
nossa fico rulasso parabens Illidan, você ainda vai me ensinar a fazer layout em CSS :yay:/> [](/topic/147489-busca-cep-bem-facil33/?do=findComment&comment=433827)
Valeu! :D/> Aplicações com AJAX dão outra cara pro sistema, né? Aqui tem uma muito legal: http://www.tableless.com.br/ajax/ (senha: ajax)
Cliquem nos links na lateral esquerda...
Quanto à "aula" de CSS, quem sou eu... hehehe. Mas eu posso te ajudar com o pouco que sei. ;)/>
[]'s!
Nossa essa admin é f*** !!! muito loca !!!ainda espero minhas aulas :rolleyes:/> []'s
Illidan, o script ficou ainda melhor com AJAX http://forum.imasters.com.br/public/style_emoticons/default/joia.gif/>
Excelente script.Aqui no IE 6.0 só funciona se digitar o CEP com o dígito, tipo: 00000-000.Já no FF e no Opera funciona de qualquer forma.
Não é de se estranhar. O I.E. é o navegador que menos respeita os padrões da W3C...
>
Não é de se estranhar.
O I.E. é o navegador que menos respeita os padrões da W3C...
[](/topic/147489-busca-cep-bem-facil33/?do=findComment&comment=435653)
heheh, se fosse só os padrões do W3C tudo bem. Mas, considero uma falta de respeito o que ele (ie) faz conosco.
Warning: php_hostconnect: connect failed in c:\apache\htdocs\sap\testecep.php on line 8Warning: fopen("http://www.correios.com.br/servicos/falecomoscorreios/ctBuscaEndereco.cfm?cep=02733110", "r") - Bad file descriptor in c:\apache\htdocs\sap\testecep.php on line 8Warning: Supplied argument is not a valid File-Handle resource in c:\apache\htdocs\sap\testecep.php on line 9Warning: Supplied argument is not a valid File-Handle resource in c:\apache\htdocs\sap\testecep.php on line 10Endereço: Bairro: Cidade: UF:
Amigos, alguem pode me ajudar ?
o que estou fazendo de errado..
o codigo que estou usando é : testecep.php
<?########################## AUTORA: Tatiane Gonzaga ## CONTATO: tati@soportais.com.br ##########################if ($_POST){$buscacep = "[http://www.correios.com.br/servicos/falecomoscorreios/ctBuscaEndereco.cfm?cep=$cep";$fp](http://www.correios.com.br/servicos/falecomoscorreios/ctBuscaEndereco.cfm?cep=%24cep) = fopen($buscacep,"r");$cepres = fread($fp,8146);fclose ($fp);$arrcep = split("'",$cepres);echo "Endereço: $arrcep[1]<br>";echo "Bairro: $arrcep[3]<br>";echo "Cidade: $arrcep[5]<br>";echo "UF: $arrcep[7]<br>";}?><form method="POST" action=testecep.php><div align="center"><table><tr><td colspan="2"><p align="center">Digite o CEP para ver o Endereço</td></tr><tr><td>CEP</td><td><input type="text" name="cep" size="20" value="<?=$cep;?>"></td></tr><tr><td> </td><td><input type="submit" value="Buscar" name="buscar"></td></tr></table></div></form>você tem que mudar o "action" do formulário para o nome do script que está executando. ;)/>
Illidan,
Você também pode usar a função r.split(';') do JavaScript. Assim, você não precisa de logradouro = r.substring(0, (i = r.indexOf(':')));
olá tatiane você sabe como fazer o inverso? por endereco, bairro e receber o cep?e você pode explicar o funcionamento do código? ond você descobriu essa funcionalidade dos correios?
Ola,sou novo em php e gostaria de saber,Como faço pra enviar os dados deste script depois de preenchido o formulario,pro meu email?Grato!
Olá,
Ja consegui fazer funcionar valeu a intenção se alguem quiaser ver funcionando segue o link:
Obs: Caso eu queira enviar pra um banco de dados tem jeito?
Abração.
Não funciona para mim.
Usei o arquivo do ILLIDAN nesse exemplo, sem modificação alguma, e apesar de não acusar nenhum erro, não completa os outros campos do formulário.
Antes usei a edição do RED NECK *, que não funcionou porque marcava os campos com códigos:
Logradouro: <br /><b>Warning</b>Complemento:Bairro: file()Localidade: URL file-access is disabled in the server configuration in <b>/home/aliancer/public_html/site/contato/2/endereco.txt.php</b> on line <b>18</b><br /><br /><b>Warning</b>
Modifiquei o código
var ajax = XMLHTTPRequest();ajax.open("GET", ("./endereco.txt.php?cep=" + campos.cep.value.replace(/[^\d]*/, "")), true);Para
var ajax = XMLHTTPRequest();ajax.open("GET", ("[http://www.aliancers.com.br/site/contato/2/endereco.txt.php?cep="](http://www.aliancers.com.br/site/contato/2/endereco.txt.php?cep=) + campos.cep.value.replace(/[^\d]*/, "")), true);e mudei a action de <form action="#" method="post"> para <form action="endereco.txt.php" method="post">. Os erros continuam (embora na primeira tentativa o erro tenha sido "Acesso negado", quando apertava TAB para mudar de campo no form.
Eu sei que devo ter feito um monte de besteira, mas é só fuçando que eu aprendo mesmo. E com a ajdua de vocês, claro.
por favor, me ajudem com isso. Era muito urgente ontem. Hoje é muito mais. Por favor.
@Tiago Pruxachei a solucao para o seu problema... o ruim é que ficou com 1300 linhas XD, enfim eu testei aqui e rolo, eu usei a classe Snoopy, é so trocar o endereco.txt.php pelo codigo a baixo
> <?php/*************************************************Snoopy - the PHP net clientAuthor: Monte Ohrt <monte@ispi.net>Copyright ©: 1999-2000 ispi, all rights reservedVersion: 1.01 * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USAYou may contact the author of Snoopy by e-mail at:monte@ispi.netOr, write to:Monte OhrtCTO, ispi237 S. 70th suite 220Lincoln, NE 68510The latest version of Snoopy can be obtained from:[http://snoopy.sourceforge.net/](http://snoopy.sourceforge.net/)*************************************************/class Snoopy{ /**** Public variables ****/ /* user definable vars */ var $host = "www.php.net"; // host name we are connecting to var $port = 80; // port we are connecting to var $proxy_host = ""; // proxy host to use var $proxy_port = ""; // proxy port to use var $proxy_user = ""; // proxy user to use var $proxy_pass = ""; // proxy password to use var $agent = "Snoopy v1.01"; // agent we masquerade as var $referer = ""; // referer info to pass var $cookies = array(); // array of cookies to pass // $cookies["username"]="joe"; var $rawheaders = array(); // array of raw headers to send // $rawheaders["Content-type"]="text/html"; var $maxredirs = 5; // http redirection depth maximum. 0 = disallow var $lastredirectaddr = ""; // contains address of last redirected address var $offsiteok = true; // allows redirection off-site var $maxframes = 0; // frame content depth maximum. 0 = disallow var $expandlinks = true; // expand links to fully qualified URLs. // this only applies to fetchlinks() // submitlinks(), and submittext() var $passcookies = true; // pass set cookies back through redirects // NOTE: this currently does not respect // dates, domains or paths. var $user = ""; // user for http authentication var $pass = ""; // password for http authentication // http accept types var $accept = "image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*"; var $results = ""; // where the content is put var $error = ""; // error messages sent here var $response_code = ""; // response code returned from server var $headers = array(); // headers returned from server sent here var $maxlength = 500000; // max return data length (body) var $read_timeout = 0; // timeout on read operations, in seconds // supported only since PHP 4 Beta 4 // set to 0 to disallow timeouts var $timed_out = false; // if a read operation timed out var $status = 0; // http request status var $temp_dir = "/tmp"; // temporary directory that the webserver // has permission to write to. // under Windows, this should be C:\temp var $curl_path = "/usr/local/bin/curl"; // Snoopy will use cURL for fetching // SSL content if a full system path to // the cURL binary is supplied here. // set to false if you do not have // cURL installed. See [http://curl.haxx.se](http://curl.haxx.se) // for details on installing cURL. // Snoopy does *not* use the cURL // library functions built into php, // as these functions are not stable // as of this Snoopy release. /**** Private variables ****/ var $_maxlinelen = 4096; // max line length (headers) var $_httpmethod = "GET"; // default http request method var $_httpversion = "HTTP/1.0"; // default http request version var $_submit_method = "POST"; // default submit method var $_submit_type = "application/x-www-form-urlencoded"; // default submit type var $_mime_boundary = ""; // MIME boundary for multipart/form-data submit type var $_redirectaddr = false; // will be set if page fetched is a redirect var $_redirectdepth = 0; // increments on an http redirect var $_frameurls = array(); // frame src urls var $_framedepth = 0; // increments on frame depth var $_isproxy = false; // set if using a proxy server var $_fp_timeout = 30; // timeout for socket connection/*======================================================================*\ Function: fetch Purpose: fetch the contents of a web page (and possibly other protocols in the future like ftp, nntp, gopher, etc.) Input: $URI the location of the page to fetch Output: $this->results the output text from the fetch\*======================================================================*/ function fetch($URI) { //preg_match("|^([^:]+)://([^:/]+)(:[\d]+)*(.*)|",$URI,$URI_PARTS); $URI_PARTS = parse_url($URI); if (!empty($URI_PARTS["user"])) $this->user = $URI_PARTS["user"]; if (!empty($URI_PARTS["pass"])) $this->pass = $URI_PARTS["pass"]; if (empty($URI_PARTS["query"])) $URI_PARTS["query"] = ''; if (empty($URI_PARTS["path"])) $URI_PARTS["path"] = ''; switch($URI_PARTS["scheme"]) { case "http": $this->host = $URI_PARTS["host"]; if(!empty($URI_PARTS["port"])) $this->port = $URI_PARTS["port"]; if($this->_connect($fp)) { if($this->_isproxy) { // using proxy, send entire URI $this->_httprequest($URI,$fp,$URI,$this->_httpmethod); } else { $path = $URI_PARTS["path"].($URI_PARTS["query"] ? "?".$URI_PARTS["query"] : ""); // no proxy, send only the path $this->_httprequest($path, $fp, $URI, $this->_httpmethod); } $this->_disconnect($fp); if($this->_redirectaddr) { /* url was redirected, check if we've hit the max depth */ if($this->maxredirs > $this->_redirectdepth) { // only follow redirect if it's on this site, or offsiteok is true if(preg_match("|^http://".preg_quote($this->host)."|i",$this->_redirectaddr) || $this->offsiteok) { /* follow the redirect */ $this->_redirectdepth++; $this->lastredirectaddr=$this->_redirectaddr; $this->fetch($this->_redirectaddr); } } } if($this->_framedepth < $this->maxframes && count($this->_frameurls) > 0) { $frameurls = $this->_frameurls; $this->_frameurls = array(); while(list(,$frameurl) = each($frameurls)) { if($this->_framedepth < $this->maxframes) { $this->fetch($frameurl); $this->_framedepth++; } else break; } } } else { return false; } return true; break; case "https": if(!$this->curl_path) return false; if(function_exists("is_executable")) if (!is_executable($this->curl_path)) return false; $this->host = $URI_PARTS["host"]; if(!empty($URI_PARTS["port"])) $this->port = $URI_PARTS["port"]; if($this->_isproxy) { // using proxy, send entire URI $this->_httpsrequest($URI,$URI,$this->_httpmethod); } else { $path = $URI_PARTS["path"].($URI_PARTS["query"] ? "?".$URI_PARTS["query"] : ""); // no proxy, send only the path $this->_httpsrequest($path, $URI, $this->_httpmethod); } if($this->_redirectaddr) { /* url was redirected, check if we've hit the max depth */ if($this->maxredirs > $this->_redirectdepth) { // only follow redirect if it's on this site, or offsiteok is true if(preg_match("|^http://".preg_quote($this->host)."|i",$this->_redirectaddr) || $this->offsiteok) { /* follow the redirect */ $this->_redirectdepth++; $this->lastredirectaddr=$this->_redirectaddr; $this->fetch($this->_redirectaddr); } } } if($this->_framedepth < $this->maxframes && count($this->_frameurls) > 0) { $frameurls = $this->_frameurls; $this->_frameurls = array(); while(list(,$frameurl) = each($frameurls)) { if($this->_framedepth < $this->maxframes) { $this->fetch($frameurl); $this->_framedepth++; } else break; } } return true; break; default: // not a valid protocol $this->error = 'Invalid protocol "'.$URI_PARTS["scheme"].'"\n'; return false; break; } return true; }/*======================================================================*\ Function: submit Purpose: submit an http form Input: $URI the location to post the data $formvars the formvars to use. format: $formvars["var"] = "val"; $formfiles an array of files to submit format: $formfiles["var"] = "/dir/filename.ext"; Output: $this->results the text output from the post\*======================================================================*/ function submit($URI, $formvars="", $formfiles="") { unset($postdata); $postdata = $this->_prepare_post_body($formvars, $formfiles); $URI_PARTS = parse_url($URI); if (!empty($URI_PARTS["user"])) $this->user = $URI_PARTS["user"]; if (!empty($URI_PARTS["pass"])) $this->pass = $URI_PARTS["pass"]; if (empty($URI_PARTS["query"])) $URI_PARTS["query"] = ''; if (empty($URI_PARTS["path"])) $URI_PARTS["path"] = ''; switch($URI_PARTS["scheme"]) { case "http": $this->host = $URI_PARTS["host"]; if(!empty($URI_PARTS["port"])) $this->port = $URI_PARTS["port"]; if($this->_connect($fp)) { if($this->_isproxy) { // using proxy, send entire URI $this->_httprequest($URI,$fp,$URI,$this->_submit_method,$this->_submit_type,$postdata); } else { $path = $URI_PARTS["path"].($URI_PARTS["query"] ? "?".$URI_PARTS["query"] : ""); // no proxy, send only the path $this->_httprequest($path, $fp, $URI, $this->_submit_method, $this->_submit_type, $postdata); } $this->_disconnect($fp); if($this->_redirectaddr) { /* url was redirected, check if we've hit the max depth */ if($this->maxredirs > $this->_redirectdepth) { if(!preg_match("|^".$URI_PARTS["scheme"]."://|", $this->_redirectaddr)) $this->_redirectaddr = $this->_expandlinks($this->_redirectaddr,$URI_PARTS["scheme"]."://".$URI_PARTS["host"]); // only follow redirect if it's on this site, or offsiteok is true if(preg_match("|^http://".preg_quote($this->host)."|i",$this->_redirectaddr) || $this->offsiteok) { /* follow the redirect */ $this->_redirectdepth++; $this->lastredirectaddr=$this->_redirectaddr; if( strpos( $this->_redirectaddr, "?" ) > 0 ) $this->fetch($this->_redirectaddr); // the redirect has changed the request method from post to get else $this->submit($this->_redirectaddr,$formvars, $formfiles); } } } if($this->_framedepth < $this->maxframes && count($this->_frameurls) > 0) { $frameurls = $this->_frameurls; $this->_frameurls = array(); while(list(,$frameurl) = each($frameurls)) { if($this->_framedepth < $this->maxframes) { $this->fetch($frameurl); $this->_framedepth++; } else break; } } } else { return false; } return true; break; case "https": if(!$this->curl_path) return false; if(function_exists("is_executable")) if (!is_executable($this->curl_path)) return false; $this->host = $URI_PARTS["host"]; if(!empty($URI_PARTS["port"])) $this->port = $URI_PARTS["port"]; if($this->_isproxy) { // using proxy, send entire URI $this->_httpsrequest($URI, $URI, $this->_submit_method, $this->_submit_type, $postdata); } else { $path = $URI_PARTS["path"].($URI_PARTS["query"] ? "?".$URI_PARTS["query"] : ""); // no proxy, send only the path $this->_httpsrequest($path, $URI, $this->_submit_method, $this->_submit_type, $postdata); } if($this->_redirectaddr) { /* url was redirected, check if we've hit the max depth */ if($this->maxredirs > $this->_redirectdepth) { if(!preg_match("|^".$URI_PARTS["scheme"]."://|", $this->_redirectaddr)) $this->_redirectaddr = $this->_expandlinks($this->_redirectaddr,$URI_PARTS["scheme"]."://".$URI_PARTS["host"]); // only follow redirect if it's on this site, or offsiteok is true if(preg_match("|^http://".preg_quote($this->host)."|i",$this->_redirectaddr) || $this->offsiteok) { /* follow the redirect */ $this->_redirectdepth++; $this->lastredirectaddr=$this->_redirectaddr; if( strpos( $this->_redirectaddr, "?" ) > 0 ) $this->fetch($this->_redirectaddr); // the redirect has changed the request method from post to get else $this->submit($this->_redirectaddr,$formvars, $formfiles); } } } if($this->_framedepth < $this->maxframes && count($this->_frameurls) > 0) { $frameurls = $this->_frameurls; $this->_frameurls = array(); while(list(,$frameurl) = each($frameurls)) { if($this->_framedepth < $this->maxframes) { $this->fetch($frameurl); $this->_framedepth++; } else break; } } return true; break; default: // not a valid protocol $this->error = 'Invalid protocol "'.$URI_PARTS["scheme"].'"\n'; return false; break; } return true; }/*======================================================================*\ Function: fetchlinks Purpose: fetch the links from a web page Input: $URI where you are fetching from Output: $this->results an array of the URLs\*======================================================================*/ function fetchlinks($URI) { if ($this->fetch($URI)) { if($this->lastredirectaddr) $URI = $this->lastredirectaddr; if(is_array($this->results)) { for($x=0;$x<count($this->results);$x++) $this->results[$x] = $this->_striplinks($this->results[$x]); } else $this->results = $this->_striplinks($this->results); if($this->expandlinks) $this->results = $this->_expandlinks($this->results, $URI); return true; } else return false; }/*======================================================================*\ Function: fetchform Purpose: fetch the form elements from a web page Input: $URI where you are fetching from Output: $this->results the resulting html form\*======================================================================*/ function fetchform($URI) { if ($this->fetch($URI)) { if(is_array($this->results)) { for($x=0;$x<count($this->results);$x++) $this->results[$x] = $this->_stripform($this->results[$x]); } else $this->results = $this->_stripform($this->results); return true; } else return false; } /*======================================================================*\ Function: fetchtext Purpose: fetch the text from a web page, stripping the links Input: $URI where you are fetching from Output: $this->results the text from the web page\*======================================================================*/ function fetchtext($URI) { if($this->fetch($URI)) { if(is_array($this->results)) { for($x=0;$x<count($this->results);$x++) $this->results[$x] = $this->_striptext($this->results[$x]); } else $this->results = $this->_striptext($this->results); return true; } else return false; }/*======================================================================*\ Function: submitlinks Purpose: grab links from a form submission Input: $URI where you are submitting from Output: $this->results an array of the links from the post\*======================================================================*/ function submitlinks($URI, $formvars="", $formfiles="") { if($this->submit($URI,$formvars, $formfiles)) { if($this->lastredirectaddr) $URI = $this->lastredirectaddr; if(is_array($this->results)) { for($x=0;$x<count($this->results);$x++) { $this->results[$x] = $this->_striplinks($this->results[$x]); if($this->expandlinks) $this->results[$x] = $this->_expandlinks($this->results[$x],$URI); } } else { $this->results = $this->_striplinks($this->results); if($this->expandlinks) $this->results = $this->_expandlinks($this->results,$URI); } return true; } else return false; }/*======================================================================*\ Function: submittext Purpose: grab text from a form submission Input: $URI where you are submitting from Output: $this->results the text from the web page\*======================================================================*/ function submittext($URI, $formvars = "", $formfiles = "") { if($this->submit($URI,$formvars, $formfiles)) { if($this->lastredirectaddr) $URI = $this->lastredirectaddr; if(is_array($this->results)) { for($x=0;$x<count($this->results);$x++) { $this->results[$x] = $this->_striptext($this->results[$x]); if($this->expandlinks) $this->results[$x] = $this->_expandlinks($this->results[$x],$URI); } } else { $this->results = $this->_striptext($this->results); if($this->expandlinks) $this->results = $this->_expandlinks($this->results,$URI); } return true; } else return false; } /*======================================================================*\ Function: set_submit_multipart Purpose: Set the form submission content type to multipart/form-data\*======================================================================*/ function set_submit_multipart() { $this->_submit_type = "multipart/form-data"; } /*======================================================================*\ Function: set_submit_normal Purpose: Set the form submission content type to application/x-www-form-urlencoded\*======================================================================*/ function set_submit_normal() { $this->_submit_type = "application/x-www-form-urlencoded"; } /*======================================================================*\ Private functions\*======================================================================*/ /*======================================================================*\ Function: _striplinks Purpose: strip the hyperlinks from an html document Input: $document document to strip. Output: $match an array of the links\*======================================================================*/ function _striplinks($document) { preg_match_all("'<\s*a\s.*?href\s*=\s* # find <a href= ([\"\'])? # find single or double quote (?(1) (.*?)\\1 | ([^\s\>]+)) # if quote found, match up to next matching # quote, otherwise match up to next space 'isx",$document,$links); // catenate the non-empty matches from the conditional subpattern while(list($key,$val) = each($links[2])) { if(!empty($val)) $match[] = $val; } while(list($key,$val) = each($links[3])) { if(!empty($val)) $match[] = $val; } // return the links return $match; }/*======================================================================*\ Function: _stripform Purpose: strip the form elements from an html document Input: $document document to strip. Output: $match an array of the links\*======================================================================*/ function _stripform($document) { preg_match_all("'<\/?(FORM|INPUT|SELECT|TEXTAREA|(OPTION))[^<>]*>(?(2)(.*(?=<\/?(option|select)[^<>]*>[\r\n]*)|(?=[\r\n]*))|(?=[\r\n]*))'Usi",$document,$elements); // catenate the matches $match = implode("\r\n",$elements[0]); // return the links return $match; } /*======================================================================*\ Function: _striptext Purpose: strip the text from an html document Input: $document document to strip. Output: $text the resulting text\*======================================================================*/ function _striptext($document) { // I didn't use preg eval (//e) since that is only available in PHP 4.0. // so, list your entities one by one here. I included some of the // more common ones. $search = array("'<script[^>]*?>.*?</script>'si", // strip out javascript "'<[\/\!]*?[^<>]*?>'si", // strip out html tags "'([\r\n])[\s]+'", // strip out white space "'&(quot|#34|#034|#x22);'i", // replace html entities "'&(amp|#38|#038|#x26);'i", // added hexadecimal values "'&(lt|#60|#060|#x3c);'i", "'&(gt|#62|#062|#x3e);'i", "'&(nbsp|#160|#xa0);'i", "'&(iexcl|#161);'i", "'&(cent|#162);'i", "'&(pound|#163);'i", "'&(copy|#169);'i", "'&(reg|#174);'i", "'&(deg|#176);'i", "'&(#39|#039|#x27);'", "'&(euro|#8364);'i", // europe "'&a(uml|UML);'", // german "'&o(uml|UML);'", "'&u(uml|UML);'", "'&A(uml|UML);'", "'&O(uml|UML);'", "'&U(uml|UML);'", "'ß'i", ); $replace = array( "", "", "\\1", "\"", "&", "<", ">", " ", chr(161), chr(162), chr(163), chr(169), chr(174), chr(176), chr(39), chr(128), "ä", "ö", "ü", "Ä", "Ö", "Ü", "ß", ); $text = preg_replace($search,$replace,$document); return $text; }/*======================================================================*\ Function: _expandlinks Purpose: expand each link into a fully qualified URL Input: $links the links to qualify $URI the full URI to get the base from Output: $expandedLinks the expanded links\*======================================================================*/ function _expandlinks($links,$URI) { preg_match("/^[^\?]+/",$URI,$match); $match = preg_replace("|/[^\/\.]+\.[^\/\.]+$|","",$match[0]); $match = preg_replace("|/$|","",$match); $match_part = parse_url($match); $match_root = $match_part["scheme"]."://".$match_part["host"]; $search = array( "|^http://".preg_quote($this->host)."|i", "|^(\/)|i", "|^(?!http://)(?!mailto:)|i", "|/\./|", "|/[^\/]+/\.\./|" ); $replace = array( "", $match_root."/", $match."/", "/", "/" ); $expandedLinks = preg_replace($search,$replace,$links); return $expandedLinks; }/*======================================================================*\ Function: _httprequest Purpose: go get the http data from the server Input: $url the url to fetch $fp the current open file pointer $URI the full URI $body body contents to send if any (POST) Output: \*======================================================================*/ function _httprequest($url,$fp,$URI,$http_method,$content_type="",$body="") { $cookie_headers = ''; if($this->passcookies && $this->_redirectaddr) $this->setcookies(); $URI_PARTS = parse_url($URI); if(empty($url)) $url = "/"; $headers = $http_method." ".$url." ".$this->_httpversion."\r\n"; if(!empty($this->agent)) $headers .= "User-Agent: ".$this->agent."\r\n"; if(!empty($this->host) && !isset($this->rawheaders['Host'])) $headers .= "Host: ".$this->host."\r\n"; if(!empty($this->accept)) $headers .= "Accept: ".$this->accept."\r\n"; if(!empty($this->referer)) $headers .= "Referer: ".$this->referer."\r\n"; if(!empty($this->cookies)) { if(!is_array($this->cookies)) $this->cookies = (array)$this->cookies; reset($this->cookies); if ( count($this->cookies) > 0 ) { $cookie_headers .= 'Cookie: '; foreach ( $this->cookies as $cookieKey => $cookieVal ) { $cookie_headers .= $cookieKey."=".urlencode($cookieVal)."; "; } $headers .= substr($cookie_headers,0,-2) . "\r\n"; } } if(!empty($this->rawheaders)) { if(!is_array($this->rawheaders)) $this->rawheaders = (array)$this->rawheaders; while(list($headerKey,$headerVal) = each($this->rawheaders)) $headers .= $headerKey.": ".$headerVal."\r\n"; } if(!empty($content_type)) { $headers .= "Content-type: $content_type"; if ($content_type == "multipart/form-data") $headers .= "; boundary=".$this->_mime_boundary; $headers .= "\r\n"; } if(!empty($body)) $headers .= "Content-length: ".strlen($body)."\r\n"; if(!empty($this->user) || !empty($this->pass)) $headers .= "Authorization: Basic ".base64_encode($this->user.":".$this->pass)."\r\n"; //add proxy auth headers if(!empty($this->proxy_user)) $headers .= 'Proxy-Authorization: ' . 'Basic ' . base64_encode($this->proxy_user . ':' . $this->proxy_pass)."\r\n"; $headers .= "\r\n"; // set the read timeout if needed if ($this->read_timeout > 0) socket_set_timeout($fp, $this->read_timeout); $this->timed_out = false; fwrite($fp,$headers.$body,strlen($headers.$body)); $this->_redirectaddr = false; unset($this->headers); while($currentHeader = fgets($fp,$this->_maxlinelen)) { if ($this->read_timeout > 0 && $this->_check_timeout($fp)) { $this->status=-100; return false; } if($currentHeader == "\r\n") break; // if a header begins with Location: or URI:, set the redirect if(preg_match("/^(Location:|URI:)/i",$currentHeader)) { // get URL portion of the redirect preg_match("/^(Location:|URI:)[ ]+(.*)/",chop($currentHeader),$matches); // look for :// in the Location header to see if hostname is included if(!preg_match("|\:\/\/|",$matches[2])) { // no host in the path, so prepend $this->_redirectaddr = $URI_PARTS["scheme"]."://".$this->host.":".$this->port; // eliminate double slash if(!preg_match("|^/|",$matches[2])) $this->_redirectaddr .= "/".$matches[2]; else $this->_redirectaddr .= $matches[2]; } else $this->_redirectaddr = $matches[2]; } if(preg_match("|^HTTP/|",$currentHeader)) { if(preg_match("|^HTTP/[^\s]*\s(.*?)\s|",$currentHeader, $status)) { $this->status= $status[1]; } $this->response_code = $currentHeader; } $this->headers[] = $currentHeader; } $results = ''; do { $_data = fread($fp, $this->maxlength); if (strlen($_data) == 0) { break; } $results .= $_data; } while(true); if ($this->read_timeout > 0 && $this->_check_timeout($fp)) { $this->status=-100; return false; } // check if there is a a redirect meta tag if(preg_match("'<meta[\s]*http-equiv[^>]*?content[\s]*=[\s]*[\"\']?\d+;[\s]*URL[\s]*=[\s]*([^\"\']*?)[\"\']?>'i",$results,$match)) { $this->_redirectaddr = $this->_expandlinks($match[1],$URI); } // have we hit our frame depth and is there frame src to fetch? if(($this->_framedepth < $this->maxframes) && preg_match_all("'<frame\s+.*src[\s]*=[\'\"]?([^\'\"\>]+)'i",$results,$match)) { $this->results[] = $results; for($x=0; $x<count($match[1]); $x++) $this->_frameurls[] = $this->_expandlinks($match[1][$x],$URI_PARTS["scheme"]."://".$this->host); } // have we already fetched framed content? elseif(is_array($this->results)) $this->results[] = $results; // no framed content else $this->results = $results; return true; }/*======================================================================*\ Function: _httpsrequest Purpose: go get the https data from the server using curl Input: $url the url to fetch $URI the full URI $body body contents to send if any (POST) Output: \*======================================================================*/ function _httpsrequest($url,$URI,$http_method,$content_type="",$body="") { if($this->passcookies && $this->_redirectaddr) $this->setcookies(); $headers = array(); $URI_PARTS = parse_url($URI); if(empty($url)) $url = "/"; // GET ... header not needed for curl //$headers[] = $http_method." ".$url." ".$this->_httpversion; if(!empty($this->agent)) $headers[] = "User-Agent: ".$this->agent; if(!empty($this->host)) $headers[] = "Host: ".$this->host; if(!empty($this->accept)) $headers[] = "Accept: ".$this->accept; if(!empty($this->referer)) $headers[] = "Referer: ".$this->referer; if(!empty($this->cookies)) { if(!is_array($this->cookies)) $this->cookies = (array)$this->cookies; reset($this->cookies); if ( count($this->cookies) > 0 ) { $cookie_str = 'Cookie: '; foreach ( $this->cookies as $cookieKey => $cookieVal ) { $cookie_str .= $cookieKey."=".urlencode($cookieVal)."; "; } $headers[] = substr($cookie_str,0,-2); } } if(!empty($this->rawheaders)) { if(!is_array($this->rawheaders)) $this->rawheaders = (array)$this->rawheaders; while(list($headerKey,$headerVal) = each($this->rawheaders)) $headers[] = $headerKey.": ".$headerVal; } if(!empty($content_type)) { if ($content_type == "multipart/form-data") $headers[] = "Content-type: $content_type; boundary=".$this->_mime_boundary; else $headers[] = "Content-type: $content_type"; } if(!empty($body)) $headers[] = "Content-length: ".strlen($body); if(!empty($this->user) || !empty($this->pass)) $headers[] = "Authorization: BASIC ".base64_encode($this->user.":".$this->pass); for($curr_header = 0; $curr_header < count($headers); $curr_header++) $safer_header = strtr( $headers[$curr_header], "\"", " " ); $cmdline_params .= " -H \"".$safer_header."\""; if(!empty($body)) $cmdline_params .= " -d \"$body\""; if($this->read_timeout > 0) $cmdline_params .= " -m ".$this->read_timeout; $headerfile = tempnam($temp_dir, "sno"); $safer_URI = strtr( $URI, "\"", " " ); // strip quotes from the URI to avoid shell access exec($this->curl_path." -D \"$headerfile\"".$cmdline_params." \"".$safer_URI."\"",$results,$return); if($return) { $this->error = "Error: cURL could not retrieve the document, error $return."; return false; } $results = implode("\r\n",$results); $result_headers = file("$headerfile"); $this->_redirectaddr = false; unset($this->headers); for($currentHeader = 0; $currentHeader < count($result_headers); $currentHeader++) { // if a header begins with Location: or URI:, set the redirect if(preg_match("/^(Location: |URI: )/i",$result_headers[$currentHeader])) { // get URL portion of the redirect preg_match("/^(Location: |URI:)\s+(.*)/",chop($result_headers[$currentHeader]),$matches); // look for :// in the Location header to see if hostname is included if(!preg_match("|\:\/\/|",$matches[2])) { // no host in the path, so prepend $this->_redirectaddr = $URI_PARTS["scheme"]."://".$this->host.":".$this->port; // eliminate double slash if(!preg_match("|^/|",$matches[2])) $this->_redirectaddr .= "/".$matches[2]; else $this->_redirectaddr .= $matches[2]; } else $this->_redirectaddr = $matches[2]; } if(preg_match("|^HTTP/|",$result_headers[$currentHeader])) $this->response_code = $result_headers[$currentHeader]; $this->headers[] = $result_headers[$currentHeader]; } // check if there is a a redirect meta tag if(preg_match("'<meta[\s]*http-equiv[^>]*?content[\s]*=[\s]*[\"\']?\d+;[\s]*URL[\s]*=[\s]*([^\"\']*?)[\"\']?>'i",$results,$match)) { $this->_redirectaddr = $this->_expandlinks($match[1],$URI); } // have we hit our frame depth and is there frame src to fetch? if(($this->_framedepth < $this->maxframes) && preg_match_all("'<frame\s+.*src[\s]*=[\'\"]?([^\'\"\>]+)'i",$results,$match)) { $this->results[] = $results; for($x=0; $x<count($match[1]); $x++) $this->_frameurls[] = $this->_expandlinks($match[1][$x],$URI_PARTS["scheme"]."://".$this->host); } // have we already fetched framed content? elseif(is_array($this->results)) $this->results[] = $results; // no framed content else $this->results = $results; unlink("$headerfile"); return true; }/*======================================================================*\ Function: setcookies() Purpose: set cookies for a redirection\*======================================================================*/ function setcookies() { for($x=0; $x<count($this->headers); $x++) { if(preg_match('/^set-cookie:[\s]+([^=]+)=([^;]+)/i', $this->headers[$x],$match)) $this->cookies[$match[1]] = urldecode($match[2]); } } /*======================================================================*\ Function: _check_timeout Purpose: checks whether timeout has occurred Input: $fp file pointer\*======================================================================*/ function _check_timeout($fp) { if ($this->read_timeout > 0) { $fp_status = socket_get_status($fp); if ($fp_status["timed_out"]) { $this->timed_out = true; return true; } } return false; }/*======================================================================*\ Function: _connect Purpose: make a socket connection Input: $fp file pointer\*======================================================================*/ function _connect(&$fp) { if(!empty($this->proxy_host) && !empty($this->proxy_port)) { $this->_isproxy = true; $host = $this->proxy_host; $port = $this->proxy_port; } else { $host = $this->host; $port = $this->port; } $this->status = 0; if($fp = fsockopen( $host, $port, $errno, $errstr, $this->_fp_timeout )) { // socket connection succeeded return true; } else { // socket connection failed $this->status = $errno; switch($errno) { case -3: $this->error="socket creation failed (-3)"; case -4: $this->error="dns lookup failure (-4)"; case -5: $this->error="connection refused or timed out (-5)"; default: $this->error="connection failed (".$errno.")"; } return false; } }/*======================================================================*\ Function: _disconnect Purpose: disconnect a socket connection Input: $fp file pointer\*======================================================================*/ function _disconnect($fp) { return(fclose($fp)); } /*======================================================================*\ Function: _prepare_post_body Purpose: Prepare post body according to encoding type Input: $formvars - form variables $formfiles - form upload files Output: post body\*======================================================================*/ function _prepare_post_body($formvars, $formfiles) { settype($formvars, "array"); settype($formfiles, "array"); $postdata = ''; if (count($formvars) == 0 && count($formfiles) == 0) return; switch ($this->_submit_type) { case "application/x-www-form-urlencoded": reset($formvars); while(list($key,$val) = each($formvars)) { if (is_array($val) || is_object($val)) { while (list($cur_key, $cur_val) = each($val)) { $postdata .= urlencode($key)."[]=".urlencode($cur_val)."&"; } } else $postdata .= urlencode($key)."=".urlencode($val)."&"; } break; case "multipart/form-data": $this->_mime_boundary = "Snoopy".md5(uniqid(microtime())); reset($formvars); while(list($key,$val) = each($formvars)) { if (is_array($val) || is_object($val)) { while (list($cur_key, $cur_val) = each($val)) { $postdata .= "--".$this->_mime_boundary."\r\n"; $postdata .= "Content-Disposition: form-data; name=\"$key\[\]\"\r\n\r\n"; $postdata .= "$cur_val\r\n"; } } else { $postdata .= "--".$this->_mime_boundary."\r\n"; $postdata .= "Content-Disposition: form-data; name=\"$key\"\r\n\r\n"; $postdata .= "$val\r\n"; } } reset($formfiles); while (list($field_name, $file_names) = each($formfiles)) { settype($file_names, "array"); while (list(, $file_name) = each($file_names)) { if (!is_readable($file_name)) continue; $fp = fopen($file_name, "r"); $file_content = fread($fp, filesize($file_name)); fclose($fp); $base_name = basename($file_name); $postdata .= "--".$this->_mime_boundary."\r\n"; $postdata .= "Content-Disposition: form-data; name=\"$field_name\"; filename=\"$base_name\"\r\n\r\n"; $postdata .= "$file_content\r\n"; } } $postdata .= "--".$this->_mime_boundary."--\r\n"; break; } return $postdata; }}header("Content-type: text/plain");$cep = (isset($_GET["cep"])) ? preg_replace("/[^\d]/", "", $_GET["cep"]) : false;$url = "[http://www.correios.com.br/servicos/falecomoscorreios/ctBuscaEndereco.cfm?cep=".$cep;](http://www.correios.com.br/servicos/falecomoscorreios/ctBuscaEndereco.cfm?cep=%22.%24cep;)if ($cep) { $browser = new Snoopy; $browser->fetch($url); $res = $browser->results; preg_match_all("/\.value\s*=\s*[\"\']([^\"\']*)[\"\']/", $res, $matches); list($logradouro, $bairro, $localidade, $uf) = $matches[1]; if(!empty($logradouro) && !empty($bairro) && !empty($localidade) && !empty($uf)) echo urlencode($logradouro) . ":" . urlencode($bairro) . ":" . urlencode($localidade) . ":" . $uf . ";"; else echo false;}?>
espero ter ajudado[]'s
Esse é o red neck *!!
muito chique =D
http://forum.imasters.com.br/public/style_emoticons/default/clap.gif/>
[]s
luis
Engraçado.Qndo eu uso, ele nao joga essa variavel pro proximo formulario (onde esta definido o action) somente se eu mudar para o get.Alguem sabe como passar essa variavel para o outro formulario com o POST?[]'s
Olá, Ja consegui fazer funcionar valeu a intenção se alguem quiaser ver funcionando segue o link:My WebpageObs: Caso eu queira enviar pra um banco de dados tem jeito?Abração.
Ae kra, ficou xou!!! Libera o codigo!!!!Valew!!!----------------------- http://forum.imasters.com.br/public/style_emoticons/default/joia.gif/> http://forum.imasters.com.br/public/style_emoticons/default/joia.gif/> http://forum.imasters.com.br/public/style_emoticons/default/joia.gif/>
legal cara ^^, mais você postou no lugar errado... posta ali no laboratorio de scripts ^^[]'s