Here is my code:
<?php
// 27/01/2016 Edit:
$result = mysql_query("A Long mysql query");
$rss = new SimpleXMLElement('<rss version="2.0" />');
$products = $rss->addChild('products');
///
while($row = mysql_fetch_array($result)){
$product = $products->addChild('category');
$product->addChild('product_id',"$row[product_id]");
$product->addChild('cat_id',"$row[cat_id]");
$product->addChild('cat_name',"$row[cat_name]");
$product->addchild('product_code',"$row[product_code]");
$product->addchild('product_name',"$row[product_name]");
$product->addChild('description','$row[description]');
$product->addchild('rating',"$row[rating]");
$product->addchild('image_url','$row[imag_url]');
$product->addchild('price',"$row[price]");
$product->addchild('discount',"$row[discount]");
$product->addchild('stock_status',"$row[stock_status]");
$product->addchild('stock_quantity',"$row[stock_quantity]");
$product->addchild('weight',"$row[weight]");
$product->addchild('length',"$row[length]");
$product->addchild('width',"$row[width]");
$product->addchild('height',"$row[height]");
$product->addchild('colour',"$row[colour]");
$product->addchild('size',"$row[size]");
$product->addchild('material',"$row[material]");
$product->addchild('pattern',"$row[pattern]");
};
Header('Content-type: text/xml');
print($rss->asXML());
?>
and here is the error:
Warning: SimpleXMLElement::addChild() [simplexmlelement.addchild]: unterminated entity reference _Coke.jpg in C:\wamp\www\rabwah\core.php on line 40
The error is in the line with '$row[imag_url]'
.
If you use the new created node you can set the value by accessing {0} property. This should escape any special characters.
Try by changing -
To
OR
EDIT wrap quotes too round image_url, courtesy Barrmar
The correct form is:
This correctly encodes the
& < >
and"" ''
Sorry for reviving an old question, but there is another solution to this.. Assuming the following code causes the "unterminated entity reference" error:
@Joel-Davey's solution works very well:
But you can also do the following if, for some reason, you don't want to use the above htmlspecialchars function (basically, you split the one step into two steps):
i have no idea which one will execute faster; i doubt it'd make much of a difference, but, this works, and i thought it should be mentioned
PS: i know it works because i'm using it on a personal project
SimpleXMLElement
is actually a system resource which behaves like an object. Which makes working with loops tricky. So when trying to add new child elements instead of this:do this:
or you can use
htmlspecialchars()
, to escape html characters.Note:
mysql_*
is deprecated as of php-5.5 and removed as of php-7. So instead usemysqli_*
orPDO
.Why shouldn't I use mysql_* functions in PHP?