look at this:
PHP Code:
$encryptText = date('dDjLNSwzWFmMntLoYyaABgGhHisueIOPTZcru'); echo ($encryptText);
output:
10Mon1001th125237September09Sep93002007200707pmPM8 8031503150732uAmerica/Chicago1-0500-05:00CDT-180002007-09-10T15:07:32-05:00Mon, 10 Sep 2007 15:07:32 -0500u
You're not using the date function correctly.
I just looked at what you entered closer. You've entered every option for the date function. So I guess you could say you're using it correctly as each option is valid. However you're not using it efficiently.
Lets say you want to output the mm/dd/yyyy.
PHP Code:
echo (date('m/d/Y'));
Try playing with some of these options to see the output, and keep in mind you don't have to use them all at the same time  .
Last edited by flann; 09-10-2007 at 04:38 PM..
|