.
Manca una Definizione?
Se non hai trovato nel glossario la parola che cercavi segnalacela! La inseriremo il prima possibile
if (isset($_POST[parola])) {
$iniz=substr("$_POST[parola]", 0, 1);
$iniz=strtoupper($iniz);
$query="INSERT INTO glossario (lettera, parola, attivo) VALUES ('$iniz', '$_POST[parola]', '0')";
$ris = mysql_query($query,$conn) or die("Errore nella query2: " . mysql_error());
echo '
Il termine "'.$_POST[parola].'" è stato inserito nella lista delle richieste del glossario. Nei giorni seguenti controlli eventuali aggiornamenti!';
}
?>
echo "
Glossario
";
$q="SELECT COUNT(*) FROM glossario WHERE attivo='1'";
$r=mysql_query($q,$conn) or die("Errore nella query1: " . mysql_error());
$voci=mysql_fetch_array($r);
echo '
';
echo "Nel glossario sono presenti $voci[0] definizioni.";
echo '
';
echo '
';
$alfabeto="ABCDEFGHILMNOPQRSTUVZ";
$puntatore=0;
while($puntatore<21) {
$carattere=substr($alfabeto, $puntatore, 1);
$puntatore++;
if ($carattere!=$_GET[termine]) {
echo ''.$carattere.' ';
} else {
echo "$carattere ";
}
if ($carattere!="Z") echo "- ";
}
echo " ";
$q1="SELECT * FROM glossario WHERE lettera='$_GET[termine]' AND attivo='1' ORDER BY parola";
$r1=mysql_query($q1,$conn) or die("Errore nella query1: " . mysql_error());
echo "
Lettera \"$_GET[termine]\"
";
while($elemento= mysql_fetch_array($r1)) {
$b=preg_replace('/\[img url=(.+?) alt=(.+?) width=(.+?) height=(.+?) sx\]/','
', $elemento[testo]);
$b=preg_replace('/\[img url=(.+?) alt=(.+?) width=(.+?) height=(.+?) dx\]/','
', $b);
$text=preg_replace('/\[div centro\]\[img url=(.+?) alt=(.+?) width=(.+?) height=(.+?)\]\[\/div\]/','
', $b);
$text=preg_replace('/\[Link url=(.+?)\](.+?)\[\/Link\]/','
\\2', $text);
$text=preg_replace('/\[h2\](.+?)\[\/h2\]/','
\\1
',$text);
$text=preg_replace('/\[B\](.+?)\[\/B\]/','
\\1',$text);
$text=preg_replace('/\[br\](\[el\])/','\\1',$text);
$text=preg_replace('/\[br\]/','
',$text);
$text=preg_replace('/\[Lista\](.+?)\[\/Lista\]/','
',$text);
$text=preg_replace('/\[el\](.+?)\[\/el\]/','
\\1',$text);
echo '
'.$elemento[parola].''.$text.'
';
}
?>