Hi,

Tuesday, September 24, 2002, 7:22:24 PM, you wrote:
RB> Hi, 

RB> I'm generating XML files with the domxml functions. Everything works fine, 
RB> but I can't set the <!DOCTYPE blah SYSTEM "my.dtd">. 

RB> I tried to add a textnode, but <>" are translate in &lt; &gt; &quot; :(


RB> Thanks for your help.

RB> Raph


RB> PS:Having some troubles to send on the ML, I send this through the news 
RB> server (excuse if you get my request two times)


One way to cheat :)
<?
ob_start();
echo '<?xml version="1.0"?>'
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";>
<root />
<?
$buffer = ob_get_contents();
ob_end_clean();
$dom = domxml_open_mem($buffer);
$doctype = $dom->doctype();
echo '<pre>';
print_r($doctype);
echo htmlentities($dom->dump_mem(true));
echo '</pre>';

-- 
regards,
Tom


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to