Dropdown list box using data from XML file

We can create one drop down list box by using data from our student table. This xml file is created by reading data from MySQL table. You can check the output as XML from our file-xml-demo.xml file. Here is the PHP Script to generate the dropdown list
<?Php
$obj_xml = new SimpleXMLElement('file-xml-demo.xml', NULL, TRUE);
// Total number of elements present ///
//$total = $obj_xml->count(); // total number of elements for PHP 5.3 and above
$total =count($obj_xml->children());  // for < php 5.3 version

$str="<select name='student'>";
for($i=0; $i<$total; $i++) { 
$str= $str . "<option value=".$obj_xml->details[$i]->id.">".$obj_xml->details[$i]->name. "</option>";
}
$str = $str. "</select>";
echo $str;
?>

Subscribe to our YouTube Channel here


Subscribe

* indicates required
Subscribe to plus2net

    plus2net.com




    Schalk

    09-11-2018

    Ahhhhh, Yes. Thank you.This was exactly what I have been searching for. Thank you soooo much!

    Post your comments , suggestion , error , requirements etc here .




    We use cookies to improve your browsing experience. . Learn more
    HTML MySQL PHP JavaScript ASP Photoshop Articles FORUM . Contact us
    ©2000-2023 plus2net.com All rights reserved worldwide Privacy Policy Disclaimer