I wonder about overwritting the same tag twice, like '<FirstName>' and end
up with one result when using hte XML parse...  Does anyone know that PHP
XML Parse can work without overwriting in this case and still get two
different result?

Scott F.

"Raditha Dissanayake" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> While it's possible to process XML using regular expression. The whole
> point of using XML is that you wouldn't have to use hacked solutions
> like that :-)
>
> Scott Fletcher wrote:
>
> >Hi Fellas!
> >
> >    I don't want to use the PHP's XML feature at this moment because I
found
> >out that I need to recompile PHP with the XML support which I can't do at
> >this moment.  So, instead of recompiling, does anyone know of a good
sample
> >coding or class out there on the Internet that would work   I'm looking
for
> >something similiar like this...  Problem is I don't have good scripts
that
> >can handle the quote or double quote without missing up the XML data and
PHP
> >Array...
> >
> >--snip--
> >//Individual
> ><FirstName>Bill</FirstName>
> ><LastName>Clinton</LastName>
> ><Gender>M</Gender>
> ><FavoratePet>Dog</FavoratePet>
> >//Joint
> ><FirstName>Hillary</FirstName>
> ><LastName>Clinton</LastName>
> ><Gender>F</Gender>
> ><FavoratePet>Cat</FavoratePet>
> >
> >//This would be return in array like...
> >echo $XML_Tag['FirstName'][0];  //Output would be "Bill"...
> >echo " "; //Whitespace...
> >echo $XML_Tag['LastName'][0]; //Output would be "Clinton"...
> >echo "'s favorate pet is a ";
> >echo $XML_Tag['FavoratePet']; //Output would be "Dog"...
> >echo " and his wife name is ";
> >echo $XML_Tag['FirstName'][1];  //Output would be "Hillary"...
> >echo " "; //Whitespace...
> >echo $XML_Tag['LastName'][1]; //Output would be "Clinton"...
> >--snip--
> >
> >Just something like that...   Thanks!!!
> >
> >Scott F.
> >
> >
> >
>
>
> -- 
> Raditha Dissanayake.
> ------------------------------------------------------------------------
> http://www.radinks.com/sftp/          |  http://www.raditha/megaupload/
> Lean and mean Secure FTP applet with  |  Mega Upload - PHP file uploader
> Graphical User Inteface. Just 150 KB  |  with progress bar.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to