date_default_timezone_set('Europe/Madrid');
$fichero="texto/c16.txt";
$fichero2="texto/c162.txt";
$fichero_evento="texto/evento.txt";
$evento=trim(@file_get_contents($fichero_evento, true));
if(isset($_POST['texto'])){
$texto=$_POST['texto'];
$participantes=$_POST['participantes'];
if($texto!=""){
date_default_timezone_set('Europe/Madrid');
$fecha = date("d/m/y H:i:s");
$fh = fopen($fichero, 'a') or die("can't open file");
$fh2 = fopen($fichero2, 'a') or die("can't open file");
fwrite($fh, $texto."\t".$participantes."
\r\n");
fwrite($fh2, get_the_title()." $evento \t".$fecha."\t".$texto."\t".$participantes."\t\r\n");
fclose($fh);
echo '
Has quedado apuntado!
';
echo '';
}
}else{
echo '
Apuntate para cocinar en '.$evento.':
';
}
echo '
Apuntados para cocinar en '.trim($evento).':
';
$textoExistente=@file_get_contents($fichero, true);
$textoExistente=str_replace("Cocinilla","
Cocinilla",$textoExistente);
$textoExistente=str_replace("Pinche de cocinilla","
Pinche de cocinilla",$textoExistente);
echo $textoExistente;
echo '
';
?>