I would like to know how to build interfaces in a system developed in PHP in a simple and effective way. I would like to know if there is any kind of Framework, if there is one which is best for building complex interfaces.
I would like to know how to build interfaces in a system developed in PHP in a simple and effective way. I would like to know if there is any kind of Framework, if there is one which is best for building complex interfaces.
For the interface development in PHP you should do the same using web technologies such as html, css and javascript. In this context I find it interesting to take a look at Bootstrap that it is a css framework. It is possible to build advanced interfaces because it contains several panel templates spread across the web, such as this or this one , for example.
If it's a desktop system, I'd suggest seeing about C # (or any other .NET language).
Usually in PHP it is used as a web language and for this the development of screens is done using HTML and CSS, you can find several tutorials on the net regarding this. If so, I recommend twitter bootstrap ( link ) or Material design ( link )
Now if it is the same graphical interface, the program screen, PHP-GTK allows you to build an application as a desktop application ( link )
But if this is the case, desktop programming I recommend you choose another language, use some .Net language of life, or leave for C / C ++ which has in its structure many similarities with PHP and will allow you to use other libraries such as Qt ( link ) which in addition to other features provides libraries to facilitate the development of interfaces.