nel calendario per evidenziare il giorno attuale faccio così:
per evidenziare anche tutte le domeniche ho fatto così ma non funziona:Codice PHP:
if (($d == $thisDay) && ($mon == $thisMon) && ($year == $thisYear))
{
echo "background=\"../images/pixel_beige.gif\"";
}
come potrei fare?Codice PHP:
if (($d == "Sunday"))
{
echo "background=\"../images/pixel_giallo.gif\"";
}