-4

I have created one project in Php/Mysql .Now i want to create .exe file for this project.So that if anyone runs this exe file automatically mysql/php/apache get installed in other word he don't need to install anything.Is this Possible?

Thanks

user7789076
  • 798
  • 2
  • 12
  • 25
  • Refer this http://stackoverflow.com/questions/9046675/convert-a-php-script-into-a-stand-alone-windows-executable – vijaykumar Nov 20 '13 at 07:08

1 Answers1

3

You need to learn to use the setup creators.. The WAMP does the same by installing mysql and apache on the target computer. So your installer will be similar to WAMP that will silently install the apache and mysql and copy your files to www directory and create the database using some sql script.

MJ Khan
  • 1,696
  • 3
  • 21
  • 36
  • how can i put my file in wamp.exe www directory. – user7789076 Nov 20 '13 at 07:16
  • If you are using wamp installer, then you have to manually place the files in www directory. But it you are creating your own installer, (for example, [Inno Setup](http://www.jrsoftware.org/isinfo.php)), then you can tell your installer to place files in www directory. – MJ Khan Nov 20 '13 at 07:19