Posts by Dejair Sisconeto • 49 points
2 posts
-
1
votes2
answers954
viewsA: PDO Insert Record
In the structure of the table id is not set to auto increment and is set to NOT NULL this makes it mandatory at the time of insertion, ie it cannot be null. To fix this set the id as auto increment…
-
0
votes2
answers292
viewsA: How to recover values from two tables in Mysql
you can use JOIN to join the results of the two tables before from you specify all the columns you want as return. SELECT id, name, surname, photo FROM post INNER JOIN usuario ON usuario.id =…