graphic interface lib for a php website?

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

    graphic interface lib for a php website?

    anybody can advice me about graphic interface libraries to build a generic
    php website

    thanks!
    Emiliano


  • Ashmodai

    #2
    Re: graphic interface lib for a php website?

    emiliano scribbled something along the lines of:
    [color=blue]
    > anybody can advice me about graphic interface libraries to build a generic
    > php website
    >
    > thanks!
    > Emiliano
    >
    >[/color]

    One word: echo.

    You don't need graphic interface libraries to build a generic PHP
    website. PHP is primarily a Hypertext Preprocessor. The fastest way is
    outputting HTML [1] directly via the print() function or the echo statement.

    All interface design on a good website is done in HTML and CSS [2], so I
    suppose that's where you want to start. Probably you'll want to look
    into XHTML rather than HTML if you come from a programming background
    and have experience with XML as data storage.

    The displayed interface is not rendered by the server but by the
    browser. If you want static interface, create Java or C++ programs
    rather than websites please. The web is cluttered up by Java interfaces
    and Flash "websites" enough already.

    [1] http://www.w3schools.com/html/
    [2] http://www.w3schools.com/css/
    --
    Alan Plum, WAD/WD, Mushroom Cloud Productions

    Comment

    Working...