0
I searched a lot and nothing, there is the condition to list all users of different Sessions?
For example this script I use, lists only 1 user.
<?php
include "db.php";
$qryLista = mysqli_query($con, "SELECT C.*,L.xname,L.email
FROM clientes C
INNER JOIN usuarios L
ON L.id=C.user_id
WHERE C.user_id=".$_SESSION['id']." ");
while($resultado = mysqli_fetch_assoc($qryLista)){
$vetor[] = $resultado;
}
echo json_encode($vetor, JSON_UNESCAPED_UNICODE );
?>
I intend to list all registered, it is possible?
All right, I don’t know this technique hash in the database has a direct link that you can consult, because I did some research here and I was not successful, but emphasizes and clarifies about the concept hash, but, I would like an example.
– input jobs