Posts by Breno Alves • 1 point
2 posts
-
-1
votes1
answer133
viewsA: Doubt in listing items with PDO and PHP 7
I managed to solve with this code <?php $con = new PDO("mysql:dbname=banco;host=localhost", "root", "senha"); $sql = $con->prepare("SELECT * FROM turmas WHERE status = 'Ativo' ORDER BY id ASC…
-
-2
votes1
answer133
viewsQ: Doubt in listing items with PDO and PHP 7
Hello, I’m trying to make a listing using PHP 7 and PDO and I’m not getting it. Until then I made this code <?php $con = new PDO("mysql: dbname = banco; host = localhost", "root", "senha"); $sql…