Posts by Beto Raposa • 26 points
2 posts
-
0
votes2
answers67
viewsA: jQuery bring value from Mysql table
For Mysql, you can make a select like this: SELECT LAST_INSERT_ID(); It will return the last inserted ID. This works for applications with low insertion input. If the application is widely used, two…
-
1
votes2
answers119
viewsA: onBlur (Javascript) inside a Loop For PHP
There are some semantic errors in your code. You are setting in each loop iteration in PHP a new set of elements with the same id as the previous one. When you run the javascript function, it will…