desktop applications in php

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • sagar

    desktop applications in php

    Hello,

    I have written web-scripts in php.
    I want to know if it is possible to write desktop aplications in php
    which dont require the web server. If yes, than can we run these
    applications as executable in windows.


    Thank You
    Sagar Arlekar

  • Jerry Stuckle

    #2
    Re: desktop applications in php

    sagar wrote:[color=blue]
    > Hello,
    >
    > I have written web-scripts in php.
    > I want to know if it is possible to write desktop aplications in php
    > which dont require the web server. If yes, than can we run these
    > applications as executable in windows.
    >
    >
    > Thank You
    > Sagar Arlekar
    >[/color]

    Yes and yes.

    --
    =============== ===
    Remove the "x" from my email address
    Jerry Stuckle
    JDS Computer Training Corp.
    jstucklex@attgl obal.net
    =============== ===

    Comment

    • black francis

      #3
      Re: desktop applications in php

      PHP-GTK is an extension for the PHP programming language that implements language bindings for GTK+.


      Comment

      • Colin McKinnon

        #4
        Re: desktop applications in php

        Jerry Stuckle wrote:
        [color=blue]
        > sagar wrote:[color=green]
        >> Hello,
        >>
        >> I have written web-scripts in php.
        >> I want to know if it is possible to write desktop aplications in php
        >> which dont require the web server. If yes, than can we run these
        >> applications as executable in windows.
        >>
        >>
        >> Thank You
        >> Sagar Arlekar
        >>[/color]
        >
        > Yes and yes.
        >[/color]


        You can:

        1) use the GTK widget set from PHP
        2) create a POSIX environment on the MS-Windows (not 'windows') machine then
        use the ncurses library with PHP
        3) ISR tht someone was working on embedding PHP into a CHM help-browser type
        application - try google for more info

        ....but the web browser environment provides so much functionality maybe you
        should think about using a slimline webserver. There's even a couple
        written in PHP.

        C.

        Comment

        Working...