Ingmaras Keleras
Ingmaras Keleras

Reputation: 105

Create a desktop application using PHP

I have a PHP/MySQL powered SaaS application which I want to deploy an offline version of. I don't want to use any of the numerous PHP GUI tools that are out there, as this would require rebuilding the GUI and I want it to look exactly the same as the web version.

I want to run Apache/MySQL servers (or something similar) on the clients' systems and somehow compile the PHP code so the source code isn't visible. What is the best way of doing this? Ideally I want to have one .exe file that would start/stop the server.

The following is a very similar question, but it is related to Python and not PHP: Create application for web & desktop

Upvotes: 8

Views: 14025

Answers (4)

ZooBoole
ZooBoole

Reputation: 41

There are some tools and technologies that can help in that. Check this list from sitepoint: 3 Ways to Develop Cross Platform Desktop Apps with PHP, and here is an example of application done with PHP: Create your first Desktop Application with PHP and PHP Desktop

Upvotes: 0

Hardik Thaker
Hardik Thaker

Reputation: 3078

TideSDK would be good option. They provide better support.

Upvotes: 1

dgualdron
dgualdron

Reputation: 21

Server2go + Ioncube could be your best o

Upvotes: 0

hakre
hakre

Reputation: 197682

You can "hide" the source code by creating a compressed phar archive.

As webserver you can use PHP's built in webserver.

As an offline database, normally sqlite is fitting, if you need Mysql, there is an embedded version of Mysql available as well so you can embed that as well, probably through a PHP C extension.

Upvotes: 5

Related Questions