Hi Naval,
Thanks so much!
I looked at PHP.net and was able to come up with this code for my date:
PHP Code:
<?php
setlocale(LC_ALL, 'fr_FR');
echo strftime("%A %e %B %Y");
?>
It displays the current time in French, exactly what I wanted. But my concern is to know whether this current time will change daily as it does with date("d/m/Y") function. Will the script update itself tomorrow and any other day? Do they have to work together? If so, I am afraid I don't know how to work with both date() and setlocale() in a same script. Will you help me with that, please?
A million thank yous in advance! 
Herman