Maurits van der Schee
Maurits van der Schee
Wow.. what a work.. I mean.. the video.. the code.. everything! Congrats and thank you for sharing.
>I love this library but I am in need of using JSON files with no DB for a certain project. What is it that JSON files have that SQLite does...
First of all: thank you for your kind words! >Could you please add a COMPLETE application example I agree that "the value in this request is really high" and I...
Did you see [php-crud-ui](https://github.com/mevdschee/php-crud-ui)? It may not be the architecture you had in mind, but I can assure you that it is fast and easy to debug/extend. It is a...
I agree that adding security is difficult, but there are many ways to deal with authentication and authorization: - On database level, using roles and grants on SQL level (reconnect...
>The idea is to copy/clone the bootstrap application and to be able to create an API using as little php code as possible. What if you use a Laravel example...
Thank you for your kind words. I think this is a bug. Let me try to help you. Which version are you using? Are you trying to save the date...
Well.. as a workaround you could use: shift.start_date = shift.start_date.toISOString().substring(0, 19).replace('T', ' '); and I will investigate whether or not this is a regression compared to v1.
The input and output of the API is in JSON and JSON does not support date types. JavaScript stores absolute datetime while SQL defaults to relative datetime (to the current...
Good that you got it working. Well it is a workaround and not a pretty one. Note that if you do this, that you are converting absolute time (Z means...