Re: Encoding

Joshua <[email protected]> Tue, 3 May 2005 12:20:44 -0600
Newsgroups gmane.comp.lib.nexista.devel
Message-ID <[email protected]>
Additionally you mau need to encode/manipulate your incoming data - you can 
control what goes in flow using the Flow::registerImportHandler() method

On Tuesday 03 May 2005 11:44, Joshua wrote:
> Alby
>
> The issue you are having here is the encoding for your xsl stylesheet.
> If you need UTF-8 then set your xsl:
>
> <xsl:output  encoding="UTF-8" />
>
> > > about the blank space in from of the data that was crashing the output
> > > - it was an illegal character and php DOM didn't like it. SO I added
> > > this to sqldatasource.php:
> > >
> > > $myval = $this->db->FetchResult($this->result, $row, $key);
> > > $myval = iconv("UTF-8","UTF-8//IGNORE",$myval);
> > > $q->appendChild($flow->flowDocument->createElement($key,$myval));
>
> Joshua