J
|
Jane 9/27/2007 |
Hi,
|
H
|
hkopper author 10/1/2007 |
Tried adding the sample code to the report but I keep getting a blank white screen. Hi, you can do it using custom event on the report page:
|
J
|
Jane 10/2/2007 |
Hi, |
![]() |
paperhog 10/31/2007 |
Hi, you can do it using custom event on the report page:
|
J
|
Jane 11/1/2007 |
Lori, global $strTableName; echo "Date range: "; echo date("yyyy-mm-dd", strtotime($_SESSION[$strTableName."_asearchfor"]["job_post_date"])); echo " - "; echo date("yyyy-mm-dd", strtotime($_SESSION[$strTableName."_asearchfor2"]["job_post_date"])); |
![]() |
paperhog 11/1/2007 |
For anyone followinf this thread This is the solution that worked for my project. function misc_Jobs_Event1(&$params) { global $strTableName,$daterange; $daterange = $_SESSION[$strTableName."_asearchfor"]["job_post_date"]; if (isset ($daterange)){ echo "Date range: "; echo date("F d, Y", strtotime($_SESSION[$strTableName."_asearchfor"]["job_post_date"])); echo " - "; echo date("F d, Y", strtotime($_SESSION[$strTableName."_asearchfor2"]["job_post_date"])); } }
|