Re: [PHP] Re: Yes!!! BTML v1.0 is here!!!

2003-10-20 Thread Comex
[EMAIL PROTECTED] Curt Zirzow: * Thus wrote Comex ([EMAIL PROTECTED]): All this is is a xml, yet it breaks all xml rules, ironic as it sounds. Curt I don't know much about XML, so clue me in. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Re: Yes!!! BTML v1.0 is here!!!

2003-10-20 Thread Curt Zirzow
* Thus wrote Comex ([EMAIL PROTECTED]): [EMAIL PROTECTED] Curt Zirzow: * Thus wrote Comex ([EMAIL PROTECTED]): All this is is a xml, yet it breaks all xml rules, ironic as it sounds. Curt I don't know much about XML, so clue me in. http://www.w3.org/XML/ is a good place to start.

Re: [PHP] Re: Yes!!! BTML v1.0 is here!!!

2003-10-18 Thread Curt Zirzow
* Thus wrote Comex ([EMAIL PROTECTED]): Bas: That tags? It should not be used anyway... what??? Yes, i think that you want to know the structure of the BTML-file: bttag=btml /bttag bttag=title Title of the page /bttag bttag=text Here any valid HTML-MARKUP br /bttag

[PHP] Re: Yes!!! BTML v1.0 is here!!!

2003-10-17 Thread Bas
That tags? It should not be used anyway... Comex [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] [EMAIL PROTECTED] Comex: [EMAIL PROTECTED] Bas: Yes, thanx. I always wanted to make a version where you can use multiple tags of one type. And, what do you find of it? Please rate

[PHP] Re: Yes!!! BTML v1.0 is here!!!

2003-10-17 Thread Comex
[EMAIL PROTECTED] Bas: That tags? It should not be used anyway... what??? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Yes!!! BTML v1.0 is here!!!

2003-10-17 Thread Chris Shiflett
--- Comex [EMAIL PROTECTED] wrote: Bas: That tags? It should not be used anyway... what??? Would you two please take this discussion elsewhere? This is about the tenth message that makes no sense to anyone else. Thank you. Chris = My Blog http://shiflett.org/ HTTP Developer's

Re: [PHP] Re: Yes!!! BTML v1.0 is here!!!

2003-10-17 Thread Comex
[EMAIL PROTECTED] Chris Shiflett: --- Comex [EMAIL PROTECTED] wrote: Bas: That tags? It should not be used anyway... what??? Would you two please take this discussion elsewhere? This is about the tenth message that makes no sense to anyone else. Thank you. Chris = My Blog

Re: [PHP] Re: Yes!!! BTML v1.0 is here!!!

2003-10-17 Thread Comex
Now I'm confused, because of the canceled message. [EMAIL PROTECTED] Chris Shiflett: --- Comex [EMAIL PROTECTED] wrote: Bas: That tags? It should not be used anyway... what??? Would you two please take this discussion elsewhere? This is about the tenth message that makes no sense to

[PHP] Re: Yes!!! BTML v1.0 is here!!!

2003-10-15 Thread Bas
Yes, thanx. I always wanted to make a version where you can use multiple tags of one type. And, what do you find of it? Please rate it 1 to 10 Comex [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] ?php function parseTags($file) { /* readfile... here */ $filedata =

[PHP] Re: Yes!!! BTML v1.0 is here!!!

2003-10-15 Thread Comex
[EMAIL PROTECTED] Bas: Yes, thanx. I always wanted to make a version where you can use multiple tags of one type. And, what do you find of it? Please rate it 1 to 10 Comex [EMAIL PROTECTED] wrote in message I don't know... lol... -- PHP General Mailing List (http://www.php.net/) To

[PHP] Re: Yes!!! BTML v1.0 is here!!!

2003-10-15 Thread Comex
[EMAIL PROTECTED] Comex: [EMAIL PROTECTED] Bas: Yes, thanx. I always wanted to make a version where you can use multiple tags of one type. And, what do you find of it? Please rate it 1 to 10 Comex [EMAIL PROTECTED] wrote in message I don't know... lol... BTW, what should happen to text not

[PHP] Re: Yes!!! BTML v1.0 is here!!!

2003-10-13 Thread Bas
Yes, i think that you want to know the structure of the BTML-file: bttag=btml /bttag bttag=title Title of the page /bttag bttag=text Here any valid HTML-MARKUP br /bttag bttag=image Path to a image /bttag This is the structure of a BTML file. I hope that you have improvements. If this changes

[PHP] Re: Yes!!! BTML v1.0 is here!!!

2003-10-13 Thread Comex
?php function parseTags($file) { /* readfile... here */ $filedata = file_get_contents($file); $tag_match =(!bttag=(\w*)\s*(.*?)\s*/bttag!is); preg_match_all($tag_match, $filedata, $matches); for ($i=0; $i count($matches[0]); $i++) { $tagname = $matches[1][$i]; $tag['tagname'] =