FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » Imported messages » comp.lang.php » Adding a CDATA section
Show: Today's Messages :: Polls :: Message Navigator
Return to the default flat view Create a new topic Submit Reply
Re: Adding a CDATA section [message #173574 is a reply to message #173566] Tue, 19 April 2011 09:13 Go to previous messageGo to previous message
Thomas 'PointedEars'  is currently offline  Thomas 'PointedEars'
Messages: 701
Registered: October 2010
Karma:
Senior Member
Adam Harvey wrote:

> JustWondering wrote:
>> What I'm expecting is:
>>
>> <stocklist>
>> <item type="fruit">
>> <description><![CDATA[Apples are <b->yummy</b>]]></description>
>> </item>
>> <item type="vegetable">
>> </item></stocklist>
>
> I'm not really sure why you'd expect that dash in <b->, but at any rate,
> running your code on a current PHP 5.3 build results in what I'd expect,
> which is:
>
> <?xml version="1.0" encoding="UTF-8"?>
> <stockList>
> <item type="fruit">
> <description><![CDATA[Apples are <b>yummy</b>]]></description>
> </item>
> <item type="vegetable"/>
> </stockList>
>
> What version of PHP are you running?

PHP is not the issue here, but that the OP has not understood what XML is
(and how it is to be used), what a CDATA section is (that its content is
*not* parsed except for `]]>', and so cannot possibly display bold because
of <b>…</b> in it), and that Firebug's innerHTML-based Edit feature is shaky
at best with XML documents served as text/html.

Something along

header('Content-Type: text/xml; charset=UTF-8');

is missing after

<?php

but that would still not display anything of the markup in bold. (And that
is good so.)


PointedEars
--
Use any version of Microsoft Frontpage to create your site.
(This won't prevent people from viewing your source, but no one
will want to steal it.)
-- from <http://www.vortex-webdesign.com/help/hidesource.htm> (404-comp.)
[Message index]
 
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: Using exec with & - what might I get back?
Next Topic: php sessions and css file?
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Tue Nov 26 19:59:48 GMT 2024

Total time taken to generate the page: 0.04868 seconds