hi,
i got one date which get it from database, see the below how i can the date.
$SQL = "select to_char(dateField,'dd-mm-yyyy') as dateField1 from table1"
so the dateField1 is 27-10-2003
now how can i can the weekday of this date?
i try to do like below:
$strDayOfDate = to_char(dateField1, 'D');
but i think something wrong with it.
anybody please help me.....
thanks.