Encoding
Joshua <[email protected]> Tue, 3 May 2005 11:44:28 -0600
| Newsgroups | gmane.comp.lib.nexista.devel |
|---|---|
| Message-ID | <[email protected]> |
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