php-general | 2005051
Date: 05/12/05
- Next message: Greg Donald: "Re: [PHP] Best CC gateway"
- Previous message: Leila Lappin: "RE: [PHP] beginner needs help!"
- Maybe in reply to: Clinton, Rochelle A: "[PHP] beginner needs help!"
- Next in thread: Richard Lynch: "RE: [PHP] beginner needs help!"
- Reply: Richard Lynch: "RE: [PHP] beginner needs help!"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
[snip]
Thank you for your response Jay, but that is not working. My program
will not run at all with the following:
var $exportFile = "Export." . date("mdy") . ".txt";
I seem to be able to use the date function is I am not starting the
declaration with "var", but then my program is not working correctly.
[/snip]
You may have to assemble it beforehand sort of ...
$exportFileName = "Export." . date("mdy") . ".txt";
var $exportFile = $exportFileName;
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
- Next message: Greg Donald: "Re: [PHP] Best CC gateway"
- Previous message: Leila Lappin: "RE: [PHP] beginner needs help!"
- Maybe in reply to: Clinton, Rochelle A: "[PHP] beginner needs help!"
- Next in thread: Richard Lynch: "RE: [PHP] beginner needs help!"
- Reply: Richard Lynch: "RE: [PHP] beginner needs help!"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

