Re: [PHP] PHP XML

2004-10-27 Thread Dan Joseph
how is the xml being sent to you from the other place on the internet? is it being posted in a form, etc.? It won't be thru a form. I guess it'll be a direct send, he'll format something like... request nameJack/name account239048098324/account /request ... in a string and send it

Re: [PHP] PHP XML

2004-10-27 Thread Bill McCuistion
Dan Joseph wrote: how is the xml being sent to you from the other place on the internet? is it being posted in a form, etc.? It won't be thru a form. I guess it'll be a direct send, he'll format something like... request nameJack/name account239048098324/account /request ...

Re: [PHP] PHP XML

2004-10-27 Thread Dan Joseph
Look at the SOAP functions. There's a SOAP client SOAP server. The applications use SOAP calls to transfer their XML messages over the Intenet, typically http/https, but could also use smtp for transport. oh... good idea, I didn't even think of SOAP. I'll check with our other developer

Re: [PHP] PHP-XML Parse Problem

2004-05-11 Thread Chris Hayes
At 13:44 11-5-04, you wrote: I wrote a script to parse an XML doc in straightforward PHP, but then decide to write it as objects but now I have a problem, that I hope someone with a little bit more experience can look at: Im at my wits end and would appreciate any help, im getting no errors as

Re: [PHP] php-xml

2003-11-17 Thread Becoming Digital
Please post some of your code. It is incredibly difficult to help you without it. Edward Dudlik Those who say it cannot be done should not interrupt the person doing it. wishy washy | www.amazon.com/o/registry/EGDXEBBWTYUU - Original Message - From: pnp [EMAIL PROTECTED] To: [EMAIL

Re: [PHP] php-xml

2003-11-17 Thread Curt Zirzow
* Thus wrote pnp ([EMAIL PROTECTED]): Hi, I'm developing a web site for a greek company and I want to show some greek texts from an xml file to an html page. The pages encoding is utf-8. So is the xml file and the xmlparses params. But the output is a bunch of ???... You need to set the

Re: [PHP] php-xml

2003-11-17 Thread pnp
I think i found it... thank you for trying to help. Peter -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP XML Reference

2003-03-13 Thread Javagal S Reddy
Hi Tim, I have used the big ass Professional PHP 4 XML book from Wrox for the last 6 months, and i have picked up immense knowledge from that resource. Infact i have gone up in my career to being the lead web developer in my team...and i must atribute it to this book. You can find more

Re: [PHP] PHP XML

2002-10-16 Thread Chris Boget
Do you realize more benifit for the back end processes when using XML that makes any additional time it takes to display a page to the user worth it? Just ask the user if they really want to wait longer for something they can't even see, just so you can use the latest buzzword in

Re: [PHP] PHP XML

2002-10-15 Thread Maxim Maletsky
Chris Boget [EMAIL PROTECTED] wrote... : Let me preface this by saying that I know the benefits of using XML with regards to portability and extensibility. Yes, there are many benefits. Here is the issue I face. I have all of my data stored in a MySQL database. I'm considering reworking

Re: [PHP] PHP XML

2002-10-15 Thread Geoff Hankerson
A few ideas: 1. I have been setting up a system to do almost exactly what you are doing (database -- xml -- xslt--html via a custom class) and have not noticed any significant performance hit, but this is not in production so your mileage may vary, but my gut feeling is the performance hit is

Re: [PHP] PHP XML

2002-10-15 Thread .: B i g D o g :.
Chris, Here are some ideas you might want to review these options: 1. Try storing the data in the database as xml files them selves. You then do not have to create the xml file. This will no doubt increase your database size. 2. Store your xml templates in the database for faster retrieval.

Re: [PHP] PHP XML

2002-10-15 Thread Chris Boget
Here are some ideas you might want to review these options: Other people have suggested variations of the below so I'll just respond here to cut down on the bandwidth. 1. Try storing the data in the database as xml files them selves. You then do not have to create the xml file. This will

Re: [PHP] PHP XML

2002-10-15 Thread Rick Widmer
At 09:25 AM 10/15/02 -0500, Chris Boget wrote: Let me preface this by saying that I know the benefits of using XML It seems to me most of the benefits of XML actually go to the hardware and network suppliers. They get to sell you bigger storage for the bloated data, faster processors for the

Re: [PHP] PHP XML

2002-10-15 Thread .: B i g D o g :.
On Tue, 2002-10-15 at 15:03, Chris Boget wrote: Here are some ideas you might want to review these options: Other people have suggested variations of the below so I'll just respond here to cut down on the bandwidth. 1. Try storing the data in the database as xml files them selves. You

Re: [PHP] PHP XML

2002-10-15 Thread Rick Widmer
At 09:25 AM 10/15/02 -0500, Chris Boget wrote: Do you realize more benifit for the back end processes when using XML that makes any additional time it takes to display a page to the user worth it? Just ask the user if they really want to wait longer for something they can't even see,

Re: [PHP] PHP, XML and HTML-Tags

2002-08-13 Thread Analysis Solutions
On Tue, Aug 13, 2002 at 03:22:03PM +0200, Bernard wrote: I am using successfully the PHP XML-parser. But I have one problem. I like to include html tags into the texts and I don't want them to be interpreted by the parser. Have you tried putting the XML in CDATA sections? That's really

RE: [PHP] PHP, XML

2002-01-07 Thread Boget, Chris
Does anyone know of a mailing list for PHP and XML or can I just pose them here?? PHP-XML. The list address is: [EMAIL PROTECTED] Chris

Re: [PHP] PHP XML with Dynamic Content

2002-01-05 Thread Emile Bosch
Writing it on the fly would be kinda redundant.. I think.. :( from mysql data to xml to data.. .. would slow things down a bit i think.. :( Brian Clark [EMAIL PROTECTED] wrote in message 20020105030550.GD17616@ganymede">news:20020105030550.GD17616@ganymede... * Emile Bosch ([EMAIL PROTECTED])

Re: [PHP] PHP XML with Dynamic Content

2002-01-04 Thread Brian Clark
* Emile Bosch ([EMAIL PROTECTED]) [Jan 03. 2002 15:38]: Hi a lot of todays proffesional content management systems use XML, now i was wondering how it's possible to mix XML with Dynamic Content, or content which is change sensitive, IE A shop, or an auction, let's say you have a shop with

Re: [PHP] PHP XML

2001-12-19 Thread Bas van Rooijen
For XML use parser: http://www.php.net/manual/en/ref.xml.php PHP in .xsl file is possible, edit your httpd.conf find this line: AddType application/x-httpd-php .phtml .php .php3 and add extensions that should be parsed by PHP, like so: AddType application/x-httpd-php .phtml .php .php3 .xsl

Re: [PHP] PHP XML

2001-12-19 Thread Martin Hughes
Thanks! Much appreciated. M Bas Van Rooijen [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... For XML use parser: http://www.php.net/manual/en/ref.xml.php PHP in .xsl file is possible, edit your httpd.conf find this line: AddType application/x-httpd-php .phtml .php .php3 and

Re: [PHP] PHP XML (2)

2001-12-19 Thread Bas van Rooijen
and restart ofcourse ;) bvr. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] PHP XML

2001-12-07 Thread Mike Eheler
You could also do it like: ?= '?xml version=1.0 encoding=UTF-8?' ? Mike Steve Haemelinck wrote: Hi Guys I am developing with PHP and XML. Now I experience some problem with the processing instructions of xml (?xml version=1.0 encoding=UTF-8?) which causes PHP to return a parsing error. This

Re: [PHP] PHP XML

2001-12-07 Thread Erik Price
I thought that short tags were illegal in XHTML and XML. But I could be wrong. On Friday, December 7, 2001, at 01:53 PM, Steve Haemelinck wrote: Hi Guys I am developing with PHP and XML. Now I experience some problem with the processing instructions of xml (?xml version=1.0

Re: [PHP] PHP XML Parsing

2001-05-23 Thread Peter Dudley
Interesting.. So to be consistent with proper XML formatting, should the server hosting the XML file convert the into amp; ? It depends on the situation, I believe. The server that sends you XML should indeed provide you well-formed XML, which it's not doing. Probably what should happen

Re: [PHP] PHP XML Parsing

2001-05-22 Thread Mike Gifford
Hello Fabian, This was very helpful. Thanks for letting me know about this little glitch. It almost resolves the problem that I was having. Now I no longer get xml errors. However, I'm not able to output the XML either. Any suggestions would be appreciated. The updated code is available

Re: [PHP] PHP XML Parsing

2001-05-22 Thread Mike Gifford
Hello Peter, Peter Dudley wrote: The problem is in your link URL, where you pass CGI parameters. When XML sees the character, it assumes it's a special character thing such as amp; or quot;, so it's expecting a semicolon. replacing it with amp; fixed the XML error. Thanks!

Re: [PHP] PHP XML Parsing

2001-05-18 Thread Peter Dudley
The problem is in your link URL, where you pass CGI parameters. When XML sees the character, it assumes it's a special character thing such as amp; or quot;, so it's expecting a semicolon. linkhttp://cupe.ca/news/cupenews/showitem.asp?ID=2823cl=1/link Just yesterday I discovered a program

Re: [PHP] PHP XML Parsing

2001-05-18 Thread Fabian Raygosa
for xml you have to escape certain characters in the file, one is the ampersand ... - Original Message - From: Mike Gifford [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, May 18, 2001 12:24 PM Subject: [PHP] PHP XML Parsing Hello, In looking for a good script to parse XML