Ciao,
cercando in rete ho trovato questo tipo di menu fatto in jQuery.
Scaricati il file di download, e carica nella cartella principale il codice che ti posto sotto.
Ho modificato la pagina principale, in modo da leggere dal un file txt gli eventi del tuo cliente.
Codice PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
<title>Coda-Slider 2.0</title>
<meta http-equiv="Content-Language" content="en-us" />
<meta name="author" content="Niall Doherty" />
<link rel="stylesheet" href="stylesheets/reset.css" type="text/css" media="screen" />
<link rel="stylesheet" href="stylesheets/coda-slider-2.0.css" type="text/css" media="screen" />
<script type="text/javascript" src="javascripts/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="javascripts/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="javascripts/jquery.coda-slider-2.0.js"></script>
<script type="text/javascript">
$().ready(function() {
$('#coda-slider-1').codaSlider({
autoSlide: false,
autoSlideInterval: 4000,
dynamicArrows: true,
dynamicTabs: false
});
});
</script>
</head>
<body class="coda-slider-no-js">
<?php
function mostra($mese)
{
$news=fopen("eventi.txt","r");
while (!feof($news))
{
$buffer = fgets($news, 4096);
if(strpos($buffer, $mese) )
{
echo "$buffer
";
}
}
fclose ($news);
}
?>
<div class="coda-slider-wrapper">
<div class="coda-slider preload" id="coda-slider-1" style='width:400px;'>
<div class="panel" ><h2 class="title" >GENNAIO</h2>
<?php mostra("gennaio"); ?>
</div>
<div class="panel"><h2 class="title" >FEBBRAIO</h2>
<?php mostra("febbraio"); ?>
</div>
<div class="panel"><h2 class="title">MARZO</h2>
<?php mostra("marzo"); ?>
</div>
<div class="panel"><h2 class="title">APRILE</h2>
<?php mostra("aprile"); ?>
</div>
<div class="panel"><h2 class="title">MAGGIO</h2>
<?php mostra("maggio"); ?>
</div>
<div class="panel"><h2 class="title">GIUGNO</h2>
<?php mostra("giugno"); ?>
</div>
<div class="panel"><h2 class="title">LUGLIO</h2>
<?php mostra("luglio"); ?>
</div>
<div class="panel"><h2 class="title">AGOSTO</h2>
<?php mostra("agosto"); ?>
</div>
<div class="panel"><h2 class="title">SETTEMBRE</h2>
<?php mostra("settembre"); ?>
</div>
<div class="panel"><h2 class="title">OTTOBRE</h2>
<?php mostra("ottobre"); ?>
</div>
<div class="panel"><h2 class="title">NOVEMBRE</h2>
<?php mostra("novembre"); ?>
</div>
<div class="panel"><h2 class="title">DICEMBRE</h2>
<?php mostra("dicembre"); ?>
</div>
</div>
</div>
</body>
</html>
il file .txt dove il tuo cliente scrive gli eventi è così strutturato
eventi.txt
Codice PHP:
16 gennaio - orchestra FiSORCHESTA G.VERDI
18 gennaio - orchestra FiSORCHESTA G.VERDI
19 gennaio - orchestra FiSORCHESTA G.VERDI
20 gennaio - orchestra FiSORCHESTA G.VERDI
16 febbraio - orchestra FiSORCHESTA G.VERDI
18 febbraio - orchestra FiSORCHESTA G.VERDI
19 febbraio - orchestra FiSORCHESTA G.VERDI
20 febbraio - orchestra FiSORCHESTA G.VERDI
1 marzo - orchestra BASSO
12 marzo - orchestra BASSO
13 marzo - orchestra BASSO
14 marzo - orchestra BASSO
18 marzo - orchestra BASSO
Non è graficamente uguale a quello che cerchi ma forse puo' andare bene lo stesso.
Quello che cerchi, o te lo fai tu, o è difficile che trovi qualcuno che te lo realizzi uguale identico... ci vuole un po.
Spero che tu possa riutilizzare quello che ti ho fatto io.
Ciao