0

What exactly do I add to this XML to ADD a Line Break that recurs after each returned record?

while($ors = mysql_fetch_array($result)) 
{
$strXML .= "<set label='".$ors['Fund_Name']."' value='".$ors['Fund_Yield_Percent']."' />";

}
4

1 に答える 1

0

try adding a \r\n or a \n at the and of your string, just before the "

于 2013-02-04T21:59:15.807 に答える