Hello

I have a form designed using phpgtk application which interacts with mysql db.

All i want to do is to give it to all my users who r offline .......

I mean want to make a installable for those....

But now that i cant install php mysql on every client machine whts the solution for this.

I mean like in VB VC we make exe files so user can just run them .... How do i achieve it here

Thanx in advance
Mandar V Kelkar

    I may be misunderstanding something here, but if your users are offline, how are they supposed to be able to communicate with your mysql db?

    As you state yourself, you can't install a mysql server on every users machine and replicate your content over the Internet, so what exactly is it that you wanted your application to do, offline?

      Ok forget the case of mysql

      Consider only some application ex: Notepad developed using GTk.

      Now that i want to give it to all ???? How ?????

      Cause i cant install php on all machines ........

      Hope this is clear........

      Mandar V Kelkar

        15 days later

        I suppose what you are looking for are stand alone binaries(exe's).

        As far as I know you have to parse them through the php parser.

        php gtkfile.php

        I think you will have to install php on every machine.

        🙁

        bye!

          You need a compiler to convert the normally interpreted PHP into machine code. There was a project that apparently folded up; the old URL was www.deskcode.com/phpcompiler. Zend also produces Zend Encoder, but this is intended for web servers and might or might not help you.

            PHP is interpreted (runtime-compiled). If you want to generate a directly executable file using the GTK toolkit, use C.

              Write a Reply...