Detected 2 occurrence(s) of ‘(fopen|file)\(.*\$(GET|POST)’: <ul> <li>A Athletic Wear</li> <ul> <li>Crewneck Sweatshirt</li> </ul> <li>A Accessories</li> <ul> <li>Aprons</li> </ul> </ul> function GetCatalogyList() { global $url, $get_product_catalog; $xml = simplexml_load_file($url . $get_product_catalog . ""); foreach ($xml as $items) { $pcid = $items["product_category_id"]; $pid = $items["parent_id"]; $name = $items["name"]; // Logic to iterate through the xml so that […]
↧