3

I have a web application which is mostly programmed in javascript but there is also PHP which is driving MYSQL database. Everything clothed in HTML of course.

I would like to compile this to exe file to make it work standalone. Is there any way to do that ?

user3422998
  • 105
  • 1
  • 7
  • Doesn't the wamp server fit your needs? http://www.wampserver.com/en/ – Mauricio Moraes Aug 25 '14 at 16:17
  • How much of it do you want packaged into a client-side binary? Will the MySQL database still live remotely, or will that also be run locally on the client's machine? This is a bit of an odd way to go about making a desktop application, if not unheard of, so there will probably be some unforeseen road bumps. – ajp15243 Aug 25 '14 at 16:22
  • If the server-side part can remain server-side, try node-webkit: https://github.com/rogerwang/node-webkit – 11684 Aug 25 '14 at 16:25

2 Answers2

0

Try ZZEE PHPExe. From: http://www.zzee.com/phpexe/html-exe.php, "ZZEE PHPExe compiles HTML, PHP, Javascript, Flash and other web files into standard Windows GUI exes."

Alternatively, you could try ExeOutput for PHP. From: http://www.exeoutput.com/, "Applications made with ExeOutput for PHP run PHP scripts, PHP applications, and PHP websites natively, and do not require a web server, a web browser, or PHP distribution. They are stand-alone and work on any computer with recent Windows versions."

Treker
  • 386
  • 2
  • 9
-1
  1. Try HipHop.
  2. I don't use Windows any longer, but take a look at Cameyo or search the web for a simmelar solution. Install there an small webserver, PHP and Mysql and add your script.

    Negative on your solution is that this will take a LOT of space (probobly ~100MB).
Thomas131
  • 131
  • 1
  • 12