buon giorno a tutti, ho un grosso problema che non riesco a risolvere . da uno script, estraggo dal database , due stringhe che sono delle costanti, posto cosi vedete
Codice PHP:
$estrazione_moduli = mysql_query("SELECT * FROM `blocks_home` WHERE id!='$Id' and enable = 1 ");
$count=1;
while($array=mysql_fetch_array($estrazione_moduli)){
$valori_block_home[$count]['posizione'] = $array['posizione'];
$valori_block_home[$count]['img_icon'] = $array['img'];
$valori_block_home[$count]['path_content'] = $array['path'];
$valori_block_home[$count]['title_content'] = constant("".$array['nome']."");
$valori_block_home[$count]['descrict_content'] = constant("".$array['description']."");
$count++;
$tpl->assign("block_home_rc",$valori_block_home);
}
invece questo e l errore che mi stampa:
codice:
Warning: constant() [function.constant]: Couldn't find constant REGISTER_TICKET in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\support\index.php on line 77
Warning: constant() [function.constant]: Couldn't find constant DESCRIPTION_REGISTER_TICKET in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\support\index.php on line 78
Warning: constant() [function.constant]: Couldn't find constant SUBMIT_TICKET in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\support\index.php on line 77
Warning: constant() [function.constant]: Couldn't find constant DESCRIPTION_SUBMIT_TICKET in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\support\index.php on line 78
Warning: constant() [function.constant]: Couldn't find constant KNOWLEDGBASE in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\support\index.php on line 77
Warning: constant() [function.constant]: Couldn't find constant DESCRIPTION_KNOWLEDGBASE in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\support\index.php on line 78
Warning: constant() [function.constant]: Couldn't find constant TROUBLESHOOTER in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\support\index.php on line 77
Warning: constant() [function.constant]: Couldn't find constant DESCRIPTION_TROUBLESHOOTER in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\support\index.php on line 78
Warning: constant() [function.constant]: Couldn't find constant NEWS in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\support\index.php on line 77
Warning: constant() [function.constant]: Couldn't find constant DESCRIPTION_NEWS in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\support\index.php on line 78
Warning: constant() [function.constant]: Couldn't find constant DOWNLOAD in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\support\index.php on line 77
Warning: constant() [function.constant]: Couldn't find constant DESCRIPTION_DOWNLOAD in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\support\index.php on line 78
.cosa potrebbe essere? grazie