Php + XHTML forms

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

    Php + XHTML forms

    I have made an xhtml form and i want to query a sql database with the
    entries to the fields using a php script. I can do this using html,
    what are the differences when using xhtml?

    Thanks
  • Savut

    #2
    Re: Php + XHTML forms

    None, xhtml and html is the language used to present the data. It's like
    comparing what's the difference of showing the text in red color or blue
    color.

    Savut

    "Stephen" <steviec61@hotm ail.com> wrote in message
    news:efb807.040 4050921.2514f72 1@posting.googl e.com...[color=blue]
    >I have made an xhtml form and i want to query a sql database with the
    > entries to the fields using a php script. I can do this using html,
    > what are the differences when using xhtml?
    >
    > Thanks[/color]

    Comment

    • Ingo Schramm

      #3
      Re: Php + XHTML forms

      Stephen wrote:
      [color=blue]
      > I have made an xhtml form and i want to query a sql database with the
      > entries to the fields using a php script. I can do this using html,
      > what are the differences when using xhtml?
      >
      > Thanks[/color]

      The difference is that a well formed XHTML document should start with a
      "<?XML ..." declaration.
      1. Problems occur when your PHP has the 'short_open_tag ' option set to ON.
      2. Some browsers have problems with the <?XML declaration.

      Ingo

      Comment

      Working...