Re: Best Practices Question

2013-10-27 Thread Thierry Nivelet
No risk of being indexed as long as no href="Your temp report" can be found on a page already indexed. The site/temp folder can be hard coded relative to site root, or defined in site's config file (wwConfig) We usually delete files in site/temp folder that are more than 2-5 minutes old Thierr

RE: Best Practices Question

2013-10-27 Thread Virgil Bierschwale
The old getenv("user_name") is what I used to always use We always had to initially create a "user_name" setup in the autoexec, but there ought to be a way to get the machine name or something from windows these days -Original Message- From: ProFox [mailto:profox-boun...@leafe.com] On Beh

Best Practices Question

2013-10-27 Thread Jeff Johnson
Our SYS(2023) is awesome for storing temporary files such as report outputs. I have created user "profiles" on terminal services so that there were no collisions of report outputs. I inherited a Web Connection application where the developers created a sub folder for each user and left the ht

RE: mysql workbench

2013-10-27 Thread Virgil Bierschwale
$firstDate = DateTime::createFromFormat('Y/m/d', '2013-08-27'); $firstdate=date_create_from_format("j-M-Y","27-Aug-2013"); Just noticed the rest of your question The first line is your code. The second line is the line I got from the example that works. I'm not an expert on php by any means, but

RE: mysql workbench

2013-10-27 Thread Virgil Bierschwale
Doesn't appear to be. Like you, I'm learning php as well Other characters, like"/", ".", or "-" can also be inserted between the letters to add additional formatting: "; echo date("Y.m.d") . ""; echo date("Y-m-d"); ?> http://w3schools.com/php/php_date.asp -Original Message- From: ProFox

RE: mysql workbench

2013-10-27 Thread Gary Jeurink
Thanks... Ted corrected my previous version and your solution should work too. Is it a problem that curDate uses slashes and the rest uses dashes. It's the firstDate that keeps getting flagged. Gary Jeurink -Original Message- From: Virgil Bierschwale [mailto:vbier...@gmail.com] Sent: Fr

RE: mysql workbench

2013-10-27 Thread Gary Jeurink
I was leaning toward that it was a version restriction. I tried your solution and it worked but the day before I stumbled across $firstDate = date_create_from_format('Y/m/d', '2013-08-27'); $secondDate = date_create_from_format('Y/m/d', '2013-09-02'); And this one worked also (despite). The p