]> matita.cs.unibo.it Git - logicplayer.git/blob - public_html/dbData.php
server/log ignored
[logicplayer.git] / public_html / dbData.php
1 <?php
2 $DATA=(array(
3                 'dbLink'=> "localhost",
4         'dbName' => "LogicPlayerDB",
5         'dbAdmin' => "root",
6         'dbPassword' => "csc@CerCo!",
7         //nomi delle tabelle (di fianco sono elencati i nomi delle colonne)
8         'tbConfermaMail' => "confMail",//user,pass,random,time
9                 'tbConnessi' => "connessi",//user,tempKey,time
10         'tbUtenti' => "utenti",//user,pass
11         'tbEsercizi' => "esercizi",//id,esercizio,user,voto,time
12         'tbWebAdmin' => "webAdmin",
13         //nomi delle colonne (non tutte le tabelle hanno tutte le colonne)
14         'clUser' => "user",
15         'clPass' => "pass",
16         'clRandom' => "random",
17         'clTime' => "time",
18         'clTempKey' => "tempKey",
19         'clId' => "id",
20         'clEsercizio' => "esercizio",
21         'clVoto' => "voto",
22         //variabili globali
23         'listaEsercizi' => "/projects/logicplayer/server/com/company/esercizi.xml",
24                 'locationEsercizi' => "/esercizi/"))
25 ?>