-2

I want to make windows standalone app with php, even i want to use database, javascript in that application.

Note : i don't want to give source code to user.

I should be like exe file which user can run.

Sujit Birje
  • 31
  • 1
  • 2

2 Answers2

1

If going with Windows, try WinBinder. It allows you to develop native Windows applications using PHP.

It also supports SQLite, so you don't need a database server

Also this answer will help you

Community
  • 1
  • 1
웃웃웃웃웃
  • 11,829
  • 15
  • 59
  • 91
0

I use phc to create .exe files out of my PHP source code. It works quite well, but it's mostly good for console applications rather than full webpages.

However, you could have your PHP script include a basic "server" that allows the browser to communicate with it - I have done this in the past too, and while it might seem daunting the results were very rewarding.

Niet the Dark Absol
  • 320,036
  • 81
  • 464
  • 592