This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//link do webService | |
$wsdl = "https://apps.correios.com.br/SigepMasterJPA/AtendeClienteService/AtendeCliente?wsdl"; | |
//Cria cliente | |
$client = new SoapClient($wsdl); | |
//Chama uma função passando parametros | |
$teste = $client->consultaCEP(array('cep'=>'39470000')); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--Imprede que a pagina quebre as tabelas nos meio quando estiverem no fim da página--> | |
<style type="text/css"> | |
table { page-break-inside:auto } | |
tr { page-break-inside:avoid; page-break-after:auto } | |
thead { display:table-header-group } | |
tfoot { display:table-footer-group } | |
</style> |