Quantcast
Channel: PHP Freaks: PHP Help
Viewing all articles
Browse latest Browse all 13200

PHP XML Error

$
0
0

Hello,

 

I am trying to read XML file and store in sql table. I got two errors.

 

PHP Warning:  XMLReader::open(): Unable to open source data

 

Warning: XMLReader::read(): Load Data before trying to read

 

How to solve it ?

 

THANKS IN ADVANCED.

$reader = new XMLReader;
$reader->open('filename.xml');
while($reader->read())
{
    ///
 }

Viewing all articles
Browse latest Browse all 13200

Trending Articles