Warning: mysql_num_rows () expects parameter 1 to be resource, object given in C: \ xampp \ htdocs \ solidarity \ associates.php on line 15
My php code
<?php
include"conectar.php";
// RECEBENDO OS DADOS PREENCHIDOS DO FORMULÃ?RIO !
// $funct = $_POST ["funct"]; //atribuição do campo "nome" vindo do formulário para variavel
$cpf = $_POST ["cpf"]; //atribuição do campo "cpf" vindo do formulário para variavel
$query="select cpf from teste where cpf = '" . $cpf . "'";
$stmt = mysqli_query( $con, $query);
if( $stmt === false) {
die( print_r( mysqli_error($con), true) );
}
else
{$rows = mysql_num_rows($stmt);
if ($rows === true) {
include('index.php');}
else
{include('dr-adesao.php');}
}
mysqli_close( $con );
?>
My connection is working!
I believe the error is in the PHP file!