Print HTML text from PHP

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • thelma@uwm.edu

    Print HTML text from PHP

    I am generating an HTML form in PHP. I'd like to see the HTML
    statements that I've written, but both the echo and print commands
    respond by actually executing the HTML. How can I see the raw HTML
    text?
    thanks, --thelma

  • =?ISO-8859-15?Q?Iv=E1n_S=E1nchez_Ortega?=

    #2
    Re: Print HTML text from PHP

    thelma@uwm.edu wrote:
    I am generating an HTML form in PHP. I'd like to see the HTML
    statements that I've written, but both the echo and print commands
    respond by actually executing the HTML.
    No, they don't.
    How can I see the raw HTML text?
    Use the "view source" function in your web broser.

    --
    ----------------------------------
    Iván Sánchez Ortega -ivansanchez-algarroba-escomposlinux-punto-org-

    You will be aided greatly by a person whom you thought to be unimportant.

    Comment

    • The Natural Philosopher

      #3
      Re: Print HTML text from PHP

      thelma@uwm.edu wrote:
      I am generating an HTML form in PHP. I'd like to see the HTML
      statements that I've written, but both the echo and print commands
      respond by actually executing the HTML. How can I see the raw HTML
      text?
      thanks, --thelma
      >
      browser-view->source.

      Comment

      • thelma@uwm.edu

        #4
        Re: Print HTML text from PHP

        Iv?n S?nchez Ortega <ivansanchez-alg@rroba-escomposlinux.-.punto.-.orgwrote:
        : thelma@uwm.edu wrote:

        : I am generating an HTML form in PHP. I'd like to see the HTML
        : statements that I've written, but both the echo and print commands
        : respond by actually executing the HTML.

        : No, they don't.

        : How can I see the raw HTML text?

        : Use the "view source" function in your web broser.

        Thanks to everyone who told me this.
        --thelma

        Comment

        Working...