I have a database parallel to the wordpress in which it shows the client a list of their clients. Here everything is perfect. As I work in wordpress, I have created a page called "Client List", the problem is that when I do the list, it shows me in all the pages. How do I see the list on one page?
<?php
$sql = $conn->query("SELECT * FROM clientes");
while ($row = $sql->fetch()) {
echo 'Cliente '.$row['empresas'];
}
?>