Ben xml bulunamadı olduğunu söylemek ama sonra ben, lütfen bana yardım edin bu nasıl düzeltebilirim anlamaya Yüklü, ürün kimliği, ürün adı bu olsun mesajı almak
/* End of file welcome.php / / Location: ./system/application/controllers/welcome.php */ File“C:\Users\amaury\Documents\xml\myxml.xmlwas not found PRODUCT ID PRODUCT NAME CATEGORY PRICE
Bu benim kodudur:
function _getXML($fname)
{
$filename = $fname.'.xml';
$xmlfile="“C:\\Users\\beto\\Documents\\xml\\".$filename;
//$xmlRaw = file_get_contents($xmlfile);
$result = '';
//$this->load->library('simplexml');
//$xmlData = $this->simplexml->xml_parse($xmlRaw);
if(file_exists($xmlfile)){
$xmlRaw = file_get_contents($xmlfile);
$this->load->library('simplexml');
$xmlData = $this->simplexml->xml_parse($xmlRaw);
foreach($xmlData['Emisor'] as $row)
{
$result .= '<tr>';
$result .= '<td>'.$row['id'].'</td>';
$result .= '<td>'.$row['name'].'</td>';
$result .= '<td>'.$row['category'].'</td>';
$result .= '<td>$ '.$row['price'].'</td>';
$result .= '</tr>';
}
}else{
$result = 'File' . $xmlfile . 'was not found';
}
return $result;
}