PHP Graphical Interface

Asked

Viewed 1,731 times

1

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 some kind of Framework, if there is one that is best for building complex interfaces.

  • 2

    Your question is too wide, could you explain what kind of graphical interface you want to do? What have you done? What technologies do you intend to use?

  • 1

    When working with web the main way to mount screens is with html, css and javascript which is quite different from desktop development.

  • Interface examples: Grid with footers showing the total of each column Progressbar in cells. Grid with auto-column grouping..

  • php is just the backend of the system, for dynamic behaviors look for javascript frameworks.

  • I tried to help you but you are not expressing your doubt correctly, first asked for graphical interface, now changed the focus to better language to consume resources via webservice. Ask a specific and complete question.

2 answers

2

For the development of PHP interface you should do the same using web technologies such as html, css and javascript. In this context I find it interesting that you take a look at Bootstrap which is a css framework. With it it is possible to build advanced interfaces as it contains several panel templates spread across the web, as this or this other for example.

If it is a desktop system, I suggest seeing about C# (or any other language . NET).

1

Normally 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 about this. If that’s the case I recommend twitter bootstrap (http://getbootstrap.com/) or the Material design (http://www.google.com/design/)

Now if it’s the same graphical interface, program screen, it has PHP-GTK that allows you to build an application as a desktop application (http://www.php-gtk.com.br/)

But if that’s the case, desktop programming I recommend you choose another language, use some language. Net of life, or go to C/C++ which has many similarities to PHP and will allow you to use other libraries like Qt (http://www.qt.io/) that in addition to other resources provides libraries to facilitate the development of interfaces.

  • The application we intend to develop should contain rich desktop-style interfaces, I would like to know if php is the best option for us to choose..

  • If your application is web PHP it can be considered a good language. If it is a desktop application, as said, use another as . Net, C or C++

  • I wanted to know if the language would give us great support in: How to make web service calls with digital certificate authentication; How to generate php classes from an XSD file; How to perform xml file signatures digitally with didgital certificate; How to convert an xml file into php object with data filled; Consume SOAP, JSON services, automatically via the WSDL provided by SEFAZ;

Browser other questions tagged

You are not signed in. Login or sign up in order to post.