Follow the code:
<?php
if (isset($_GET['algumacoisa']) && !empty($_GET['algumacoisa'])) {
$user = "useradmin";
$pass = "senha123";
mysql_connect("localhost", $user, $pass);
mysql_select_db("meubancodedados");
$consulta = mysql_query("select * from teste where Status= '' ");
$total = 0;
$atualizadas = 0;
while ($linha = mysql_fetch_assoc($consulta)) {
$total += 1;
$idpedido = $linha["Pedido"];
if (verifica($idpedido))
$atualizadas += 1;
}
function verifica($pedido) // Inicio Function Verifica
{
// Email cadastrado no Pagamento Digital
$email = "[email protected]";
// Obtenha seu TOKEN entrando no menu Ferramentas do Pagamento Digital
$token = "1231232132131";
$urlPost = "https://www.pagamentodigital.com.br/transacao/consulta/";
$transacaoId = $pedido;
$pedidoId = $pedido;
$tipoRetorno = 1;
$codificacao = 1;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $urlPost);
curl_setopt($ch, CURLOPT_POST, TRUE);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_POSTFIELDS, array(
"id_transacao" => $transacaoId,
"id_pedido" => $pedidoId,
"tipo_retorno" => $tipoRetorno,
"codificacao" => $codificacao
));
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
"Authorization: Basic " . base64_encode($email . ":" . $token)
));
/* XML ou Json de retorno */
$resposta = curl_exec($ch);
/* Capturando o http code para tratamento dos erros na requisição*/
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
if ($httpCode != "200") {
echo $httpCode;
echo "algum erro ocorreu.. tente novamente!";
} else {
$xml = simplexml_load_string($resposta);
$codstatus = $xml->cod_status;
$email = $xml->cliente_email;
$nome = $xml->cliente_nome;
$meio = $xml->cod_meio_pagamento;
if ($meio != 10) {
$meio = "Cartao";
}
if ($codstatus == 3) {
mysql_query(" UPDATE teste SET Status = 'Aprovado' WHERE Pedido = '$pedido' ");
mysql_query(" UPDATE teste SET Email = '$email' WHERE Pedido = '$pedido' ");
mysql_query(" UPDATE teste SET Nome = '$nome' WHERE Pedido = '$pedido' ");
mysql_query(" UPDATE teste SET Meio = '$meio' WHERE Pedido = '$pedido' ");
return true;
}
}
} // Fim function verifica
echo "<xml><total>{$total}</total>
<atualizadas>{$atualizadas}</atualizadas></xml>";
} else {
echo "<meta charset='utf-8'/> Página inválida, movida temporariamente.";
}
?>
Problem is, it gives this error: Fatal error: Call to undefined function checks () in /home/domain/public_html/ctr/atualizes.php on line 13 The line pointed there is this:
if ( verifica($idpedido) )
Summarizing why I came here .. if I take this IF / ELSE (the one that checks for a GET request on the page), it works fine again. Yes, I'm giving a get on page, something like .php? Something = test, for my page to get in, but then that gives the error.
Why it will, does not make sense to me!