Posts by Pedro Miguel • 7 points
2 posts
-
1
votes1
answer36
viewsA: Once I edit the record, all the ones that already had are replaced by the edited one. Where did I go wrong?
Hello! Your error is in your sql: UPDATE loja SET item=:item, valor=:valor, vendedor=:vendedor, vendido=:vendido, status=:status The right thing would be: UPDATE loja SET item=:item, valor=:valor,…
phpanswered Pedro Miguel 7 -
-2
votes2
answers2793
viewsA: Back-end and fron-end communication
Hello, you should read in REST, because for you to forward the requests that the front will conceive to the user for the back it is necessary to use the HTTP protocol. Read the following article…