This is a discussion on Re: fopen question. within the PHP Language forums, part of the PHP Programming Forums category; Thanks for the help! I think I got most of it working now on that end. Any idea why the ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Thanks for the help! I think I got most of it working now on that end.
Any idea why the response would be: Error Loading XML: Invalid at the top level of the document (the call works ok when i cut and paste in IE) but gives this error through the script. Thanks again for the help! |
|
|||
|
theouimets@hotmail.com wrote:
> Thanks for the help! I think I got most of it working now on that end. > Any idea why the response would be: Error Loading XML: Invalid at the > top level of the document (the call works ok when i cut and paste in > IE) but gives this error through the script. Thanks again for the > help! Probably because you are sending the HTML entities of the less/greater-then characters instead of the literals. You should send urlencode("<element />") instead of urlencode("<element />"). JW |