Compiling PHP and MySQL into standalone windows or linux application

For the needs of my dad store, some time ago I developed a web application using PHP and MySQL. The application is used to manage products in the store.

Now he told me that one of his friends also wants to use the application in his store, but I am a little annoyed to explain how to prepare his computer for the system.

I found several ways to compile the code in .exe, but nowhere did not explain what to do with the database.

What is the best way to make it convenient to work on other computers? Maybe I should change the database type and use a different database instead of MySQL?

+4
source share
1 answer

SQLite is serverless and ideal for embedding on standalone machines.

0
source

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


All Articles