How to allow my database with trigger

Hi, I would like to ask how I can properly configure or allow my database to support or work with triggers. I’m currently working on a setup where database triggers are essential, and I want to ensure that everything is configured correctly so the triggers will execute as expected. Any guidance or best practices on enabling or managing triggers in the database would be greatly appreciated. Thank you!

With triggers, do you mean that it gets executed every once-in-a-while, aka cron jobs? Those are not supported on free hosting

1 Like

MySQL triggers aren’t supported on free hosting.

7 Likes

MySQL triggers are not supported on free hosting.

We recommend that you implement all your business logic in the PHP code of your application instead of implementing it directly in the database.

6 Likes