I have to display a page only if the following condition is satisfied i.e
if(system_date >=start_date){
if(system_date<=End_date){
//Do some thing
}
}
Say for example start_date = 08-03-2011 and end_date = 10-03-2011.
I am not able to figure this out. kindly help.