XSL

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

    #1

    XSL

    Hi. I'm writing a script for mobile content delivery. It has to be
    adoptive to the capability of a user-agent. My php script echo a
    document formatted in xhtml. In trying to convert it to WML, I am
    learning to use php's XSL functionality. Anyway,

    -- snip --
    $xml = new DOMDocument;
    $xml->load('page_tmp l.php');
    -- snip --

    Does not work. What is another way of doing this?

  • Tim Van Wassenhove

    #2
    Re: XSL

    On 2006-05-10, enriquejr <enriquejr@gmai l.com> wrote:[color=blue]
    > Hi. I'm writing a script for mobile content delivery. It has to be
    > adoptive to the capability of a user-agent. My php script echo a
    > document formatted in xhtml. In trying to convert it to WML, I am
    > learning to use php's XSL functionality. Anyway,
    >
    > -- snip --
    > $xml = new DOMDocument;
    > $xml->load('page_tmp l.php');
    > -- snip --
    >
    > Does not work. What is another way of doing this?[/color]

    You want the *output* that is generated by page_tmp1.php, not the
    source...

    --
    Met vriendelijke groeten,
    Tim Van Wassenhove <http://timvw.madoka.be >

    Comment

    Working...