Well for starters you can't have variables in single quotes.
So I would suggest using code like this.
PHP Code:
print $_POST['CodeT'] . $_POST['Code'] . ' ';
print '000000' . $_POST['Value'] . '<br />';
print $_POST['Code1'] . '<br />';
print $_POST['Code2'] . '<br />';
print 'D2000000 00000000';
Also I would suggest to valuadate this date before you output.
Here is a article to use as reference.