wewewe14 Posted December 9, 2012 Share Posted December 9, 2012 hello, i want make xml.php file likes http://gosale.ge/xml.php with php xml this is my code but it dont like this while($row = mysql_fetch_array($rs)) { $id = $row['id']; $name=$row['name']; $image=$row['pic_dir']; $text=$row['id']; $time=$row['end_at']; $price=$row['price']; $percent= 100-(($row['price']*100)/$row['origin_price']); $price=$row['price']; $xml_output .= "<sale >\n"; $xml_output .= "<link>http://hopla.ge/component/enmasse/deal/view/$id/1960_28_1_.html</link>\n"; $xml_output .= "<title>$title</title>\n"; $xml_output .= "<image>2222</image>\n"; $xml_output .= "<text>$text</text>\n"; $xml_output .= "<price>$price</price>\n"; $xml_output .= "<percent>$percent</percent>\n"; $xml_output .= "</url>\n"; } $xml_output .= "</deals>"; echo $xml_output; can anybody help me? Quote Link to comment https://forums.phpfreaks.com/topic/271785-php-xml/ Share on other sites More sharing options...
Andy123 Posted December 9, 2012 Share Posted December 9, 2012 This is a fine way to do it. You are just not rendering proper XML, so that is probably why it is not showing up properly. $xml_output = '<?xml version="1.0" encoding="UTF-8"?><deals>'; while ($row = mysql_fetch_array($rs)) { $xml_output .= "<sale id=\"$id\">"; $xml_output .= "<link>http://hopla.ge/comp...html</link>"; $xml_output .= "<title>$title</title>"; $xml_output .= "<image>2222</image>"; $xml_output .= "<text>$text</text>"; $xml_output .= "<price>$price</price>"; $xml_output .= "<percent>$percent</percent>"; $xml_output .= "</url>"; $xml_output .= "</sale>"; // You were missing this } $xml_output .= "</deals>"; echo $xml_output; You say that you don't "like that". Why not? If you are fetching rows from a database, then you will have to loop through them regardless. I am not exactly sure what the problem is? Quote Link to comment https://forums.phpfreaks.com/topic/271785-php-xml/#findComment-1398376 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.