Make PHP + MySQL applications in Windows software?

So, I have created many php + mysql + javascript applications and deployed on the server side. Users can access my applications on the server through a browser on the client computer.

However, is there an easy way to port the entire php + mysql + javascript application to Windows as software.

Users can download the installation package, which includes the entire WAMP environment and php + mysql + javascript application. After the user starts the program, a window with the built-in IE rendering engine will automatically open http: // localhost: 1234 . A window would be minimal only with borders - users should not have known it in a browser.

Does any existing software or infrastructure help achieve this?

Having seen users, it is no different from any other software. Is it possible to make it clean and cool, like your own software created using C ++ and .NET? I know that applications essentially remain only web pages, but will there be any other problems that make this bad practice?

+3
source share
3 answers

You can use something like InnoSetup for this . Just download the binaries of the packages you want to include and add the PHP source, run them from InnoSetup, making sure you unpack your PHP code and configure Apache correctly.

0
source

I do not know how active the project is, but you can see http://gtk.php.net/

0
source

All Articles