';
?>
Company Name
http://jawadonweb.com
";
function construct_feed_item ($serial, $name, $description, $categoryName, $link, $photo, $price)
{
$title = clean_feed ($name);
$description = clean_feed ($description);
$imagePath = $photo;
echo "- \n";
echo "\t".$title."\n";
echo "\tnew\n";
if ($description != NULL) {
echo "\t\n";
}
echo "\t\n";
echo "\t".$link."\n";
echo "\t".$serial."\n";
echo "\t".$serial."\n";
echo "\t".$price."\n";
echo "\t\n";
echo "
\n";
}
function clean_feed ($str)
{
$str = str_replace (";","",$str);
$str = str_replace ("\\","",$str);
$str = str_replace ("'","",$str);
$str = str_replace ("\"","",$str);
$str = str_replace (" "," ",$str);
$str = str_replace ("&","",$str);
$str = preg_replace('/[\x00-\x1F\x80-\xFF]/', '', $str);
//$str = htmlentities ($str);
return $str;
}
?>