function muntar_mail_assistencia($assx,$asst,$titol){
$ass_conf = explode('/', $assx);
$ass_taller = explode('/', $asst);
$text_final = "";
for($j=0;$j < count($titol);$j++){
$text[$j] = "";
if((!empty($ass_conf[$j]))&&(!empty($ass_taller[$j])))
$text[$j] = " - Conferència i taller ".$titol[$j];
else if((empty($ass_conf[$j]))&&(!empty($ass_taller[$j])))
$text[$j] = " - Taller ".$titol[$j];
else if((!empty($ass_conf[$j]))&&(empty($ass_taller[$j])))
$text[$j] = " - Conferència ".$titol[$j];
//echo "
Text ".$j.": ".$text[$j]."
";
if(!empty($text[$j]))
$text_final = $text_final.$text[$j]."
";
}
return $text_final;
}
function canviarFormatData($data){
list($any,$mes,$dia)=explode("-",$data);
return $dia."-".$mes."-".$any;
}
?>