";
while ($row = mysql_fetch_array($result)) {
echo "";
} // while
}
//***********************************************************
//Funzione di inserimento e gestione dei gruppi
//************************************************************
function confcons() {
global $id_cons_gen, $prefix, $dbi,$idw,$titolo,$pos_or,$pos_ver,$attivo;
$aid=$_SESSION['aid'];
$perms=ChiSei($id_cons_gen);
if ($perms >128) {
$result = mysql_query("update ".$prefix."_ele_widget set titolo='$titolo', pos_or='$pos_or', pos_ver='$pos_ver', attivo='$attivo' where id='$idw'", $dbi) || die("Errore di aggiornamento dei dati!".mysql_error());
Header("Location: admin.php?id_cons_gen=$id_cons_gen&op=widget");
}
}
if ($do and $do="modify")
confcons();
ele();
all();
echo"";
include("footer.php");
//*********************************************************************
//Funzione crea db se non esiste
//**********************************************************************
function make_db_widget(){
global $dbi,$prefix;
$result = mysql_query("CREATE TABLE IF NOT EXISTS ".$prefix."_ele_widget (
`id` int(10) NOT NULL auto_increment,
`nome_file` varchar(255) NOT NULL default '',
`titolo` varchar(255) NOT NULL default '',
`pos_or` int(1) NOT NULL default '1',
`pos_ver` int(3) NOT NULL default '0',
`attivo` int(1) NOT NULL default '0',
PRIMARY KEY (`id`)
)",$dbi);
}
?>