Script to find files on a given input date

Hello gurus,
I need to write a script to find out all the file that got changed on a specific folder since a given input date (Date to be given as Input)
Thanx

#!/bin/ksh
# $1 = date in the following format %y%m%d
touch -t "$1"0000:01 ~/dummy
find /path/to/folder -newer ~/dummy -type f