Posts by Leone Henrique • 31 points
2 posts
-
3
votes1
answer146
viewsQ: Get all the data from INNER JOIN
My problem is that I’m doing a query but I’m not able to list all the data in the table. SELECT * FROM suporte s INNER JOIN login l ON l.cliente_id = s.cliente_id INNER JOIN radius_acct r ON…
-
-2
votes2
answers87
viewsA: Show on page total id’s registered in BD
<?php require_once("config.php"); $query = "SELECT * FROM lista "; $result = mysqli_query($mysqli, $query); $total = mysqli_num_rows($result); The above code takes the number of query lines…