Jump to content
Larry Ullman's Book Forums

Search the Community

Showing results for tags 'xmlwriter'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Single Editions
    • Modern Javascript: Develop and Design
    • The Yii Book
    • Effortless Flex 4 Development
    • Building a Web Site with Ajax: Visual QuickProject
    • Ruby: Visual QuickStart Guide
    • C++ Programming: Visual QuickStart Guide
    • C Programming: Visual QuickStart Guide
    • Adobe AIR: Visual QuickPro Guide
  • PHP and MySQL for Dynamic Web Sites: Visual QuickPro Guide
    • PHP and MySQL for Dynamic Web Sites: Visual QuickPro Guide (5th Edition)
    • PHP and MySQL for Dynamic Web Sites: Visual QuickPro Guide (4th Edition)
    • PHP 6 and MySQL 5 for Dynamic Web Sites: Visual QuickPro Guide (3rd Edition)
    • PHP and MySQL for Dynamic Web Sites: Visual QuickPro Guide (2nd Edition)
    • PHP and MySQL for Dynamic Web Sites: Visual QuickPro Guide (1st Edition)
  • PHP for the Web: Visual QuickStart Guide
    • PHP for the Web: Visual QuickStart Guide (5th Edition)
    • PHP for the Web: Visual QuickStart Guide (4th Edition)
    • PHP for the Web: Visual QuickStart Guide (3rd Edition)
    • PHP for the World Wide Web: Visual QuickStart Guide (2nd Edition)
    • PHP for the World Wide Web: Visual QuickStart Guide (1st Edition)
  • Effortless E-commerce with PHP and MySQL
    • Effortless E-Commerce with PHP and MySQL (2nd Edition)
    • Effortless E-Commerce with PHP and MySQL
  • PHP Advanced: Visual QuickPro Guide
    • PHP Advanced and Object-Oriented Programming: Visual QuickPro Guide (3rd Edition)
    • PHP 5 Advanced: Visual QuickPro Guide (2nd Edition)
    • PHP Advanced: Visual QuickPro Guide
  • MySQL: Visual QuickStart Guide
    • MySQL: Visual QuickStart Guide (2nd Edition)
    • MySQL: Visual QuickStart Guide (1st Edition)
  • Other
    • Announcements
    • Newsletter, Blog, and Other Topics
    • Forum Issues
    • Social

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Found 1 result

  1. As part of a larger project, I'm trying to generate an xml file using xmlWriter. The file is created and looks okay but I get an error - "This page contains the following errors: error on line 1 at column 1: Document is empty Below is a rendering of the page up to the first error." The rest of the page is blank. The source code only displays my error message "Problems creating file "fcTeams.xml". I've include a simplified version of my code which is where the error is coming from. Any ideas what's causing the error? $xml = new XMLWriter(); $xml->openUri('fcTeams.xml'); $xml->setIndent(true); $xml->setIndentString("\t"); $xml->startDocument(); $xml->startElement('teams'); $xml->startElement('fc'); $xml->writeAttribute('id', '03'); $xml->writeElement('name', 'Real Madrid'); $xml->writeElement('manager', 'Jose Mourinho'); $xml->writeElement('captain', 'Iker Casillas'); $xml->writeElement('stadium', 'Bernabeu'); $xml->startElement('player'); $xml->writeElement('name' , 'Christiano Ronaldo'); $xml->writeElement('position','forward'); $xml->writeElement('number','7'); $xml->writeElement('country','Portugal'); $xml->endElement(); $xml->startElement('player'); $xml->writeElement('name' , 'Kaka'); $xml->writeElement('position','midfielder'); $xml->writeElement('number','8'); $xml->writeElement('country','Brazil'); $xml->endElement(); $xml->endElement(); $xml->endElement(); $xml->endDocument(); header ('Content-type: text/xml'); if ($xml->flush() ) { echo 'File "fcTeams.xml" created.'; } else { echo 'Problems creating file "fcTeams.xml".'; }
×
×
  • Create New...