/* license
BilugCMS (http://www.bilug.it) - Content Management System for dynamic web sites
Copyright (C) 2005-2008 Federico Villa and Alessio Loro Piana
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
For reference, contact bilugcms@vilnet.it
license */ ?>
/* license
BilugCMS (http://www.bilug.it) - Content Management System for dynamic web sites
Copyright (C) 2005-2008 Federico Villa and Alessio Loro Piana
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
For reference, contact bilugcms@vilnet.it
license */ ?>
$host="$localhost";
// si mette localhost perchè il mysql risiede sulla stessa macchina dell'apache
$username="dbottgries";
$pass="dbminzoni";
$dbname="mhmediac_ottgries";
$connect = mysql_connect($host, $username, $pass);
// se si mette @mysql_connect, cioè la @ davanti, inibisce i messaggi di errore
// mysql_select come lo fa Alberto
$controllo=mysql_select_db($dbname,$connect) or die ("Attenzione, non è possibile connettersi al DB");
// mysql_select come la fa Davide
//mysql_select_db ($dbname);
?>
/* license
BilugCMS (http://www.bilug.it) - Content Management System for dynamic web sites
Copyright (C) 2005-2008 Federico Villa and Alessio Loro Piana
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
For reference, contact bilugcms@vilnet.it
license */ ?>
// Versione corrente del BilugCMS
$versione= "4.01.13";
?>
/* license
BilugCMS (http://www.bilug.it) - Content Management System for dynamic web sites
Copyright (C) 2005-2008 Federico Villa and Alessio Loro Piana
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
For reference, contact bilugcms@vilnet.it
license */ ?>
//Array
$nomemese = Array("Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno", "Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre");
$tipivariabile = array("Testo","Numerico","Vero/Falso","Oggetto");
$tipisezione = array("Sito","Argomenti","Galleria","Galleria Random","Eventi","Pagine Statiche","E-commerce");
$risoluzioni = array(array(425,264),array(480,295),array(560,345),array(640,385),array(670,405));
$sitivideo = array("YouTube"=>"http://www.youtube-nocookie.com/v/","Google Video"=>"http://video.google.com/googleplayer.swf?docid=");
// classi
class DatiFilmato
{
var $sito= "YouTube";
var $ris = 0;
var $codice = "";
var $rel = 1;
var $bordi = 0;
var $pos = 0;
}
//Funzioni
function pulisci_stringa($parola)
{
/*con str_replace sostituiamo un carattere nella stringa con un altro*/
//$parola=str_replace("à","a'",$parola);
//$parola=str_replace("è","e'",$parola);
//$parola=str_replace("é","e'",$parola);
//$parola=str_replace("ì","i'",$parola);
//$parola=str_replace("ù","u'",$parola);
//$parola=str_replace("ò","o'",$parola);
$parola=str_replace("*","",$parola);
$parola=str_replace("+","",$parola);
$parola=str_replace("(","",$parola);
$parola=str_replace(")","",$parola);
$parola=str_replace("=","",$parola);
$parola=str_replace("^","",$parola);
$parola=str_replace("&","",$parola);
$parola=str_replace("%","",$parola);
$parola=str_replace("$","",$parola);
$parola=str_replace("€","E",$parola);
$parola=str_replace("£","",$parola);
$parola=str_replace("|","",$parola);
$parola=str_replace("#","",$parola);
$parola=str_replace("°","",$parola);
$parola=str_replace("§","",$parola);
$parola=str_replace("[","",$parola);
$parola=str_replace("]","",$parola);
$parola=str_replace(">","",$parola);
$parola=str_replace("<","",$parola);
$parola=str_replace("'","`",$parola);
$parola=strtoupper($parola);
//con strtoupper trasformiamo tutto in maiuscolo
return $parola;
}
function pulisci_stringa_utenti($parola)
{
$parola=str_replace("*","",$parola);
$parola=str_replace("+","",$parola);
$parola=str_replace("(","",$parola);
$parola=str_replace(")","",$parola);
$parola=str_replace("=","",$parola);
$parola=str_replace("^","",$parola);
$parola=str_replace("&","",$parola);
$parola=str_replace("%","",$parola);
$parola=str_replace("$","",$parola);
$parola=str_replace("€","E",$parola);
$parola=str_replace("£","",$parola);
$parola=str_replace("|","",$parola);
$parola=str_replace("#","",$parola);
$parola=str_replace("°","",$parola);
$parola=str_replace("§","",$parola);
$parola=str_replace("[","",$parola);
$parola=str_replace("]","",$parola);
$parola=str_replace(">","",$parola);
$parola=str_replace("<","",$parola);
$parola=str_replace("'","`",$parola);
return $parola;
}
function pulisci_stringa_gal($parola)
{
$parola=str_replace("*","",$parola);
$parola=str_replace("+","",$parola);
$parola=str_replace("(","",$parola);
$parola=str_replace(")","",$parola);
$parola=str_replace("=","",$parola);
$parola=str_replace("^","",$parola);
$parola=str_replace("&","",$parola);
$parola=str_replace("%","",$parola);
$parola=str_replace("$","",$parola);
$parola=str_replace("€","E",$parola);
$parola=str_replace("£","",$parola);
$parola=str_replace("|","",$parola);
$parola=str_replace("#","",$parola);
$parola=str_replace("°","",$parola);
$parola=str_replace("§","",$parola);
$parola=str_replace("[","",$parola);
$parola=str_replace("]","",$parola);
$parola=str_replace(">","",$parola);
$parola=str_replace("<","",$parola);
$parola=str_replace("'''","`",$parola);
//$parola=str_replace(" ","_",$parola);
$parola =stripslashes($parola);
//con strtoupper trasformiamo tutto in maiuscolo
return $parola;
}
function pulisci_stringa_dir($parola)
{
/*con str_replace sostituiamo un carattere nella stringa con un altro*/
//$parola=str_replace("à","a'",$parola);
//$parola=str_replace("è","e'",$parola);
//$parola=str_replace("é","e'",$parola);
//$parola=str_replace("ì","i'",$parola);
//$parola=str_replace("ù","u'",$parola);
//$parola=str_replace("ò","o'",$parola);
$parola=str_replace("*","",$parola);
$parola=str_replace("+","",$parola);
$parola=str_replace("(","",$parola);
$parola=str_replace(")","",$parola);
$parola=str_replace("=","",$parola);
$parola=str_replace("^","",$parola);
$parola=str_replace("&","",$parola);
$parola=str_replace("%","",$parola);
$parola=str_replace("$","",$parola);
$parola=str_replace("€","E",$parola);
$parola=str_replace("£","",$parola);
$parola=str_replace("|","",$parola);
$parola=str_replace("#","",$parola);
$parola=str_replace("°","",$parola);
$parola=str_replace("§","",$parola);
$parola=str_replace("[","",$parola);
$parola=str_replace("]","",$parola);
$parola=str_replace(">","",$parola);
$parola=str_replace("<","",$parola);
$parola=str_replace("'","`",$parola);
$parola=str_replace(" ","_",$parola);
//$parola=strtolower($parola);
$parola =stripslashes($parola);
//con strtoupper trasformiamo tutto in maiuscolo
return $parola;
}
function apici($parola)
{
if (!get_magic_quotes_gpc())
return addslashes($parola);
else
return $parola;
}
function controlla_mail ($mail)
{
if (!ereg("@",$mail) OR !ereg("\.",$mail))
{
return false;
exit;
}
else
return $mail;
}
function chkEmail($email)
{
$email = trim($email);
if($email != "") {
// la stringa rispetta il formato classico di una mail?
if(!eregi("^[a-z0-9][_\\.a-z0-9-]+@([a-z0-9][0-9a-z-]+\\.)+([a-z]{2,4})", $email))
return false;
else return $email;
}
else return false;
}
function chkEmail1($email)
{
$email = trim($email);
if($email != "") {
// la stringa rispetta il formato classico di una mail?
if(!eregi("^[a-z0-9][_\\.a-z0-9-]+@([a-z0-9][0-9a-z-]+\\.)+([a-z]{2,4})", $email))
return false;
else return true;
}
else return false;
}
function TagliaStringa($stringa, $max_char){
if(strlen($stringa)>$max_char){
$stringa_tagliata=substr($stringa, 0,$max_char);
$last_space=strrpos($stringa_tagliata," ");
$stringa_ok=substr($stringa_tagliata, 0,$last_space);
return $stringa_ok."...";
}else{
return $stringa;
}
}
function selezione($nome,$valori,$default=0)
// Funzione per creare select runtime
// var nome della select , un array valori con le scelte e eventuale default di scelta
{
echo "\n";
}
function Crea_Menu($liv=-1)
// Funzione che crea la struttura dei menu a tendina (Menu sezione a) come ul li a nidificati
{
if ($liv == -1)
{
$menu .="
\n".Crea_Menu(0)."
";
}
$stringa="SELECT ID,sez,voce,liv FROM menu where sez='a' and liv = '$liv' order by id";
$risulta=mysql_query($stringa);
if (mysql_num_rows($risulta)>0)
{
while ($control=mysql_fetch_row($risulta))
{
$voci = "";
$str1="SELECT voce,link,stat FROM menuvoci where IDmenu='$control[0]' order by ordine";
$risultato1=mysql_query($str1);
if (mysql_num_rows($risultato1)>0)
{
while ($control1 = mysql_fetch_row($risultato1))
{
if ($control1[2]=='si')
$link= "index.php?pag=static.php&stat=".$control1[1] ;
else
$link= $control1[1];
$voci .= "\t
","",$menu);
return $menu;
}
function sottovoci($id)
{
$query="SELECT id, titolo, link, idpadre, posizione, tipolink FROM menutipo WHERE tipo='t' AND idpadre='$id' ORDER BY posizione";
$risultato=mysql_query($query);
$row=mysql_num_rows($risultato);
//$voci=mysql_fetch_row($risultato);
if(!$row)
{
return 0;
}
else
{
echo"
\n";
while($voci=mysql_fetch_row($risultato))
{
$conte="SELECT id FROM menutipo WHERE tipo='t' AND idpadre='$voci[0]'";
$cont=mysql_query($conte);
$row=mysql_num_rows($cont);
if($row>0)
{
echo"\t
\n";
return 0;
}
}
function Render_Video($width,$height,$codefilm,$rel,$bordi,$sitivideo)
{
$color1=_COLOR1;
$color2=_COLOR2;
$value = $sitivideo;
$value .= "$codefilm&hl=it&fs=1&rel=$rel&color1=$color1&color2=$color2&border=$bordi";
echo "";
}
?>
/* license
BilugCMS (http://www.bilug.it) - Content Management System for dynamic web sites
Copyright (C) 2005-2008 Federico Villa and Alessio Loro Piana
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
For reference, contact bilugcms@vilnet.it
license */ ?>
//Sito
define("_SITO","Otticagries, ottica a Bolzano"); //Nome Sito
define("_SITOADM","Amministrazione"); //Nome Area Amministrativa
define("_CORPO","../html/static.php"); //Corpo
define("_META_SOCIETY","Otticagries"); //meta header Societàper i motori di ricerca in Head.php
define("_META_AUTHOR","Mirko Camarda, Luca Giuliano, Federico Villa "); //meta header per i motori di ricerca in Head.php
define("_META_DESCRIPTION","Ottica a Bolzano, nasce nel 1971 da Luigi Musmeci. Diplomatosi all Istituto Nazionale di Ottica di Arcetri (FI) nel 1969. l esperienza deriva da numerosi anni di apprendistato."); //meta header Description per i motori di ricerca in Head.php
define("_META_KEYWORDS","ottica a bolzano,ottica bolzano,ottica di bolzano,otticagries,otticagries Musmeci Michela,negozio occhiali bolzano,promozioni occhiali bolzano,promozione occhiali bambini bolzano,soluzioni lenti contatto,montature occhiali bolzano,montature occhiali otticagries,occhiali bolzano,rivendita occhiali vecchi bolzano,promozione occhiali otticagries bolzano"); //meta header Keywords per i motori di ricerca in Head.php
define("_META_RATING","Educational"); //meta header Rating per i motori di ricerca in Head.php
define("_LICENCE"," /* license
BilugCMS (http://www.bilug.it) - Content Management System for dynamic web sites
Copyright (C) 2005-2008 Federico Villa and Alessio Loro Piana
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
For reference, contact bilugcms@vilnet.it
license */ ?>"); //Licenza
define("_TESTOEMAIL","SCRIVICI"); //Voce di Menu per l'invio email
define("_APPTITOLO","Appuntamenti"); //Titolo Eventi/Appuntamenti
define("_PIEDIPAGINA","OTTICA GRIES Musmeci Luigi & C. s.a.s. di Musmeci Michela - Corso Libertà 46, 39100 Bolzano
P.iva: 00146110218 - Cod. fiscale: MSMMHL73T49A952C Tel 0471.280009 - Fax 0471.280009 - E-mail: info@otticagries.it - Cookie Policy Realizzazione sito internet by Mediacreation, di Luca Giuliano"); //Il piè di pagina del sito
define("_URLSITO","http://www.otticagries.it"); //URL del sito
define("_NOMENEWSLETTER","Otticagries "); //Nome visualizzato nelle e-mail delle newsletter
//Argomenti
define("_MAX_ARG",20); //Numero di Notizie visualizzate
define("_MAX_LAST_ARG",5); //Numero di ultime notizie da visualizzare
define("_DATA",false); //Visualizza Data nelle news
define("_AUTORE",false); //Visualizza Autore nelle news
define("_COLOR1","0xbfd9f0"); //Colore 1 per VideoYoutube
define("_COLOR2","0xe7f3fd"); //Colore 2 per VideoYoutube
define("_SOCIAL",true); //Abilita pulsanti social network
define("_SOCIAL2",true); //Abilita pulsanti social network pagine statiche
define("_MAXCLICCATINEWS",3); //Num MAX per più ricercati
//Galleria
define("_MAX_FOTO",12); //Numero di foto visualizzate per pagina
define("_MAX_SPAZIO",650); //Larghezza disponibile per la galleria
define("_MAX_LARG_FOTO",150); //Largezza miniature galleria
define("_MAX_LARGHEZZA",1024); //Larghezza foto galleria
define("_MAX_ALTEZZA",600); //Altezza foto galleria
define("_MAX_DIMENSIONE",3145728); //Dimensione immagine massima
define("_MAX_DIMENSIONE_W",3145728); //Dimensione watermark massima
define("_MAX_DIMENSIONE_A",3145728); //Dimensione altri file massima
define("_DEFGAL","anime_fantasy_a"); //Galleria di Default (se prima pagina)
define("_DEFARGGAL","prova"); //Argomento di Default (se prima pagina)
//Galleria Random
define("_MAX_LARG_R",300); //Largezza miniature galleria random
define("_MAX_ALT_R",270); //Altezza miniature galleria random
define("_MAX_DESC",14); //Descrizione massima foto
//Eventi
define("_MESE",10); //Mese Selezionato
define("_ANNO",2008); //Anno selezionato
//Pagine Statiche
define("_STATICADB",9); //Pagina selezionata dalle statiche
//E-commerce
define("_MAXCLICCATIECOMMERCE",2); //Num MAX per più ricercati
?> /* license
BilugCMS (http://www.bilug.it) - Content Management System for dynamic web sites
Copyright (C) 2005-2008 Federico Villa and Alessio Loro Piana
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
For reference, contact bilugcms@vilnet.it
license */ ?>
/* license
BilugCMS (http://www.bilug.it) - Content Management System for dynamic web sites
Copyright (C) 2005-2008 Federico Villa and Alessio Loro Piana
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
For reference, contact bilugcms@vilnet.it
license */ ?>
/* license
BilugCMS (http://www.bilug.it) - Content Management System for dynamic web sites
Copyright (C) 2005-2008 Federico Villa and Alessio Loro Piana
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
For reference, contact bilugcms@vilnet.it
license */ ?>
| _SITO