= "1"'); while ($profile = mysql_fetch_array($profiles)) { $profileid = $profile['user_id']; $date = $profile['user_lastaction']; $date = date("Y-m-d",$date)."T".date("H:i:s",$date)."+00:00"; $profile_url = $gallery_url.'member.php?action=showprofile&user_id='.$profileid; print_xml($profile_url,$prio_profile,$date,$freq_profile); } # Print XML footer xml_foot(); function xml_head() { $freq = 'daily'; $priority = '1.0'; $mod = date("Y-m-d")."T".date("H:i:s")."+00:00"; echo " "; } #----------------------------------------------- # xml_foot #----------------------------------------------- function xml_foot() { echo " "; } #----------------------------------------------- # print_xml #----------------------------------------------- function print_xml($url,$priority,$lastmod,$changefreq) { $temp = " $url"; $temp .= " $priority"; if ($lastmod != '') { $temp .=" $lastmod"; } $temp .= " $changefreq "; echo $temp; } ?>