Re: [PHP] custom tags

2004-07-13 Thread Tularis
Eric Emminger wrote: Hi George, How about this? parse the html as xml and replace the component tags with whatever php/html code output that result to a file include the file from previous step Eric On Tue, 6 Jul 2004 15:56:26 -0500, George Lantz [EMAIL PROTECTED] wrote: I am looking for a way to

Re: [PHP] custom tags

2004-07-07 Thread Jason Barnett
Eric Emminger wrote: Hi George, How about this? parse the html as xml and replace the component tags with whatever php/html code output that result to a file include the file from previous step There's actually a PEAR package which can help you with this as well:

[PHP] custom tags

2004-07-06 Thread George Lantz
I am looking for a way to parse custom html tags. I would like to then replace those tags with php/html code. Here is an example of the html file to be parsed. Notice the component, they are the custom tags I wish to replace with code. I only need help in parsing the tags and storing in a variable

Re: [PHP] custom tags

2004-07-06 Thread Eric Emminger
Hi George, How about this? parse the html as xml and replace the component tags with whatever php/html code output that result to a file include the file from previous step Eric On Tue, 6 Jul 2004 15:56:26 -0500, George Lantz [EMAIL PROTECTED] wrote: I am looking for a way to parse custom

Re: [PHP] custom tags

2004-07-06 Thread raditha dissanayake
Eric Emminger wrote: Hi George, How about this? parse the html as xml and replace the component tags with whatever php/html code output that result to a file include the file from previous step That's a good suggestions but problems arise because HTML does not have to be well formed. There is