nel calendario per evidenziare il giorno attuale faccio così:

Codice PHP:
if (($d == $thisDay) && ($mon == $thisMon) && ($year == $thisYear))
            {
                echo 
"background=\"../images/pixel_beige.gif\""
            } 
per evidenziare anche tutte le domeniche ho fatto così ma non funziona:

Codice PHP:
            if (($d == "Sunday"))
            {
                echo 
"background=\"../images/pixel_giallo.gif\""
            } 
come potrei fare?