Changes

m
Line 352: Line 352:  
To get value after the POST of your form, the command is:
 
To get value after the POST of your form, the command is:
 
<syntaxHighlight lang="php">
 
<syntaxHighlight lang="php">
$mydate = dol_mktime(12, 0 , 0, $_POST['mykeymonth'], $_POST['mykeyday'], $_POST['mykeyyear']);
+
$mydate = dol_mktime(12, 0 , 0, $GETPOST('mykeymonth', 'int'), GETPOST('mykeyday', 'int'), GETPOST('mykeyyear', 'int'));
 
print strftime('%A %d %B %Y', $mydate);
 
print strftime('%A %d %B %Y', $mydate);
 
</syntaxHighlight>
 
</syntaxHighlight>