Is it possible to run CodeIgniter in a TideSDK application?

I am working on a desktop application that needs to be embedded in WebKit view, so I use TideSDK for this purpose. I would like to know if CodeIgniter can work fine in this environment.

+6
source share
1 answer

It seems that TideSDK supports PHP , so there is no reason why this was not.

One caveat is that the TideSDK does not seem to support MySQL. If you need to use database functionality, you will need a different solution. Fortunately, the CodeIgnider SQLite module is available to take care of this problem. ( SQLite is a stand-alone SQL database system that effectively allows you to embed a database in a file.)

0
source

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


All Articles