Questions tagged as 'stmt'

2
answers

How to group and remove rows with null values of this query in MySQL

CREATE TABLE tblCliente ( idCliente int(11), estado int(1) ); CREATE TABLE tblPergunta ( idPergunta int, idCategoria int, pergunta varchar(255), tipoResposta tinyint(1) ); CREATE TABLE tblClienteRespostaPre ( idCliente int(11), idPergunta int(1...
asked by 29.10.2015 / 19:02
1
answer

stmt prepare nothing appears to me

I have this code to print the data on the page that comes from the database: <?php session_start(); include "conection.php"; $id_login = $_SESSION["id_login"]; $stmt =$db->prepare("select login.username, login.nome, lo...
asked by 30.01.2016 / 15:47