How to create a dir with name "current date".

I need to create a dir in my script with its name as current date in the server.
how can i do that please help.

mkdir "`date`"

Thanks
NT

A variation (i.a. to avoid blanks):

mkdir $( date '+%y%m%d' )