Monday, July 2, 2012

Import xml file into mysql database

<?php
if (file_exists('test.xml')) {
    $xml = simplexml_load_file('test.xml');
    print '<pre>';
    print $xml->channel[0]->item[0]->title;
   
    print_r($xml);
   
}
?>

No comments:

Post a Comment

Thank you for your Comment....

Popular Posts