Thanks for the additional input.
Here is what PHP does in my application.
I create a PHP script that produces an HTML page on a browser. That script and the text used on the page (which PHP converts to a web page) can reside either on a web server or locally on just my computer.
Every page is a form. Every page has buttons that a person can click on. Whether a page has an actual data entry form on it or not...every page is nevertheless a form in the underlying HTML.
When a person clicks a button to achieve a desired action...the form sends what button was pressed through the POST method to another PHP script that produces the desired action (whatever that action is).
I am sure all this is old hat to you all but I wanted to lay out what I am doing more clearly.
What I have been looking at is whether there is a way to avoid having to put the buttons inside an HTML form in the HTML code.
I don't think there is.
That is why I said that PHP is limited by the inability of HTML to connect buttons with events. It can't be done in HTML and HTML is the language that displays on the browser screen. So...PHP is limited by HTML button processing limitations. At least with respect to what I am doing.
I'd also like to make my buttons selectable through hot keys. Just like on regular Microsoft Windows programs that have such easily selectable buttons all over the place (like Microsoft Word). But again...HTML is limited. Firefox has some access keys that I can assign to buttons but it's nothing like regular C++ programming that creates an actual program for use on the desktop not to mention that Firefox access keys don't work in Internet Explorer and other browsers. HTML being displayed through a browser is very limited in what it can do when compared to local running programs on the desktop.
I am creating a web accessible application. To run either locally or through a web browser off a remote host.
But again...I am hampered by the limits of using a browser and HTML to create a nice looking, functional, and easy to use application that runs on both the local computer and over the Internet (through a browser).
I mean I can do it and am doing it but the GUI is not as functional and not as nice looking as the GUI of Microsoft Word for example.
Local languages such as Visual Basic and C++ can make calls to local API's which draw nice, clean GUI elements. Elements which have all kinds of attributes I can play with to make an application great looking and very functional.
PHP can't quite do that..at least very easily. Or if it can...and I have read of some libraries whereby I can make such local API calls, then I am stuck with producing an application which will only run locally and not over the web through a browser.
I want my application to run both locally (when not connected to the Internet) and over the Internet from off a web host. And I don't want to create two versions of it...one for local and one for web.
So I am looking for a GUI building language that I can use to create nice, clean, and very functional GUI elements running inside a browser. I'm not sure there is such a thing for all such languages would again be limited by HTML's lack of display flexibility.
Again the limits are imposed on me by HTML...which was never designed to be a GUI building language. PHP is not the problem per se. It's HTML's lack of flexibility in allowing me to create buttons that can be accessed using hot keys, that can be assigned events, and so forth.
I don't want to use Javascript. Javascript complicates my application even more in that Javascript does not run uniformly the same across different browsers. So not only do I have to contend with browser differences in executing CSS and HTML but now a third thing...Javascript. A bit much.
But I may have to resort to using Javascript it at this point if I want to create a nicer, cleaner, and especially more functional GUI to run in a browser.
I hope all that made sense.
Carlos