| 
 Posted by Porfirio on 12/27/07 10:39 
Hi everyone!! 
 
I am doing some work with expat for php. 
 
lets say i have this html: 
 
<html> 
	<head></head> 
	<body> 
		<foo:test somearg="foo"> 
			<foo:other/> 
		</foo:test> 
		<bar:foo> 
			<b>Hello</b> 
		</bar:foo> 
	</body> 
</html> 
 
 
so what i want is to parse xml components with namespace, so ignore html  
components 
 
So i would like to register namespaces to search for and ones to ignore  
( eg. svg: ) 
 
Maybe what i need is a html parser and not a xml parser 
 
Can you guys point me something??
 
[Back to original message] 
 |