Most voted "stmt" questions
2 questions
Sort by count of
-
2
votes2
answers3059
viewsTo group and remove lines with "null" values from 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…
-
0
votes1
answer29
viewsstmt prepare me nothing appears to me
I have this code to print the data on the page coming from the database: <?php session_start(); include "conection.php"; $id_login = $_SESSION["id_login"]; $stmt =$db->prepare("select…