M
|
mmponline author 4/18/2008 |
Still hoping for soem response on this... |
J
|
Jane 4/18/2008 |
Stephan, |
M
|
mmponline author 4/18/2008 |
Jane |
![]() |
Sergey Kornilov admin 4/18/2008 |
Stephan, |
M
|
mmponline author 4/18/2008 |
Sergey function countdown($event,$month,$day,$year) {
|
![]() |
Sergey Kornilov admin 4/18/2008 |
Set 'View as' type of date field to 'Custom' and put your code there. |
M
|
mmponline author 4/21/2008 |
I'm too stupid. Get a undefined variable: Values. Please assist! function countdown($event,$month,$day,$year) { |
J
|
Jane 4/22/2008 |
Stephan, |
M
|
mmponline author 4/22/2008 |
I've right clicked on the BidCloseTime Field and chose the custom code, putting the code there. |
J
|
Jane 4/22/2008 |
Stephan, global $data; |
M
|
mmponline author 4/22/2008 |
Tried this without success: global $value; |
J
|
Jane 4/22/2008 |
Stephan, countdown($value);
|
M
|
mmponline author 4/26/2008 |
I'm still in the dark with this. Please assist: global $conn;
|
J
|
Jane 4/28/2008 |
Stephan, global $data; ... |
M
|
mmponline author 5/22/2008 |
I'm back on this issue again, still without any luck. I found thgis piese of countdown code. // countdown function
|
M
|
mmponline author 5/22/2008 |
I found this siimpler code: $target = mktime(0, 0, 0, 2, 10, 2009);
|
J
|
Jane 5/23/2008 |
Stephan, |
M
|
mmponline author 5/23/2008 |
The code is setup as in the manual and is working correctly. My need is to replace the mktime(0, 0, 0, 2, 10, 2009); code so that the ClosingDate is read from the database field. This is not decribed in the maual. |
J
|
Jane 7/28/2008 |
Hi, global $data; $year = date("Y",strtotime($data["BidCloseDate"])); $month = date("m",strtotime($data["BidCloseDate"])); $day = date("d",strtotime($data["BidCloseDate"])); $hour = date("G",strtotime($data["BidCloseTime"])); $minute = date("i",strtotime($data["BidCloseTime"])); $second = date("s",strtotime($data["BidCloseTime"]));
|