Posts by Marcelo • 1 point
2 posts
-
0
votes0
answers44
viewsQ: Take form <option> values from ajax
I’m generating the selects form by PHP from the database, thus: $sql = "SELECT atributos.id AS id_atributos, atributos.nome AS nome_atributos, atributos.id_produto AS id_produto_atributos,…
-
-2
votes1
answer308
viewsQ: Inner Join php to search in two tables
I need to search with PHP for the data typed in two Mysql tables, produtos and usuario. I’m doing like this: $array = array(); $query = mysqli_query($conn,"SELECT * FROM produtos inner JOIN usuario…