How does fogbugz make ajax add case?

I really like how FogBugz has a “Add Case” button, where it instantly adds the text you entered into the table and gives you the opportunity to add another one.

Does anyone know how to do this? or ideally, does anyone have snippets for the PHP / MYSQL system?

+3
source share
1 answer

You can do this very easily with jQuery.

When you click tick, an AJAX request is sent, then a new row is added to the table.

If you already have PHP code to add an entry to your mySQL database, it is just a matter of learning some jQuery.

jQuery . - AJAX.

+2

Source: https://habr.com/ru/post/1710222/


All Articles