| Posted by Janwillem Borleffs on 06/26/06 08:24 
ImOk wrote:> or do I have to create a variable first or concatenate the string.
 >
 
 Besides creating a variable first, you have the following options:
 
 $dt = 'The order was sent  ' . date('F j, Y') . '. Please make a note of
 it';
 
 $dt = sprintf('The order was sent %s. Please make a note of it', date('F j,
 Y'));
 
 
 JW
 [Back to original message] |