korn syntax

Hi, how do I write this condition in korn shell:

file="*.html"
if [ -f *.html && file created today ]
then
echo "$file"
fi

I am trying to find all html files from a input text file that were created today and ftp them to a different server. please help.

Try this.. may be elementary, but it should work unless I overlooked something.

file="*.html"

date | cut -d" " -f2-3 | read var1
ls -l file | awk '{print $6,$7}' | read var2

if [[ -f *.html && "$var1" = "$var2" ]]
then
echo "$file"
fi