XML returning an error

 
Post new topic   Reply to topic    PHP User Group Malta Forum Index // PHP-Javascript Projects
View previous topic :: View next topic  
Author Message
hex4



Joined: 13 Nov 2007
Posts: 21
Location: Qormi, Malta

PostPosted: Tue Jan 08, 2008 6:10 pm    Post subject: XML returning an error Reply with quote
I'm trying to use responseXML in Ajax and an error is showing up.

Basically the error is more in the XML file itself. The & sign is shown as an error. I tried removing the property where the & is and everything worked good.

I'm using ISO-8859-1 as encoding but I even tried UTF-8. Any ideas?
_________________
orlandev.com
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
hex4



Joined: 13 Nov 2007
Posts: 21
Location: Qormi, Malta

PostPosted: Tue Jan 08, 2008 6:56 pm    Post subject: Reply with quote
FIXED

looks like the < and & are illegal characters in XML hence what I did was I used regex to replace the & with &amp; in PHP and then re-regexed it back in Javascript

PHP:
Code:
echo '<storage>' . ereg_replace('&', '&amp;', mysql_result($result, 0, 'anime_storage')) . '</storage>';


Javascript
Code:
var storage = xmlObj.getElementsByTagName("storage")[0].childNodes[0].nodeValue.replace(/$amp;/g,'&');

_________________
orlandev.com
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
Post new topic   Reply to topic    PHP User Group Malta Forum Index // PHP-Javascript Projects All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

alexisRed v1.2 // Theme Created By: Andrew Charron and Web Hosting Bluebook // Icons in Part By: Travis Carden
Boards optimised using the phpBB-SEO mod found at phpbb-seo.com
Boards hosted courtesy of solutions-lab.net
Link Backs : PHPClasses.org - MT Page :: PHPUsergroups.org - MT Page



Powered by phpBB © 2001, 2002 phpBB Group