Как я могу изменить код, который я использую ниже, для сохранения сгенерированного файла вместо его печати на экране?
<?php header("Content-type: text/xml"); $linkID = mysql_connect($host, $user, $pass) or die("Could not connect to host."); mysql_select_db($database, $linkID) or die("Could not find database."); $query = ""; $resultID = mysql_query($query, $linkID) or die("Data not found."); $xml_output = "<?xml version=\"1.0\"?>\n"; $xml_output .= "<products>\n"; for($x = 0 ; $x < mysql_num_rows($resultID) ; $x++){ $row = mysql_fetch_assoc($resultID); $xml_output .= "\t<product>\n"; . . . $xml_output .= "\t</product>\n"; } $xml_output .= "</products>"; echo $xml_output; ?>