Develop GUI Application in PHP.... I know how to develop GUI Application in PHP, But i mean is it bug free or safe.. Can we deploy it to our clients...? Suggestions needed..
hmm i dont think no one can do a gui bug-free.. even windows or linux os have bugs until now.. the best way to do a bug-free is to identify what will your cons be. atleast. make a solution of every problem you can identify.
You can not develop any GUI in 100% PHP. PHP is processed by the server, and an output in HTML is made. E.g: <? echo "<b>Hello</b>"; ?> will return "<b>Hello</b>" as a HTML output. So, "web browser interfacing" should be done with HTML+CSS and Javascript (and AJAX for remote calls).
PHP can also be used as a command line language like perl, or even compiled into a standalone application using roadsend.
It's easy to develop application in GUI... many programs available there... But my question is that, professionaly is it good or may create problem in future... Or can somebody tell me for application where coding like php and we can develop it in GUI... ??
#5 & #8, you could. But command-line scripting has nothing to do with GUI's, and if you use other modules to actually create the GUI - we would have the same scenario as php and html.
most computers run on windows so you're better of building softwares using .NET or VB that use the libraries already present in the client's computer rather than connecting to your server for each request.
I have several application, small application which do work with GUI... by GTK, Win Binder it can be changed in EXE files... My questioning is that, i deploy this EXE file professionally will it can be trouble me in future... Or is there any programming language which program is same like PHP and where we can develop GUI Application..
Java has a syntax looking like php. You might also be looking at c#. If you're into OO-PHP, this should be a pretty easy job.