C
|
cgphp 11/15/2012 |
Could you explain the "only months and years not dates" sentence? |
G
|
gudon 11/15/2012 |
chrispa, hope I understand your question correctly. |
C
|
chrispa author 11/16/2012 |
chrispa, hope I understand your question correctly. Try these event code in the Before record added page or Before record updated page: $values["month"]=date("n", strtotime($values["date"])); $values["year"]=date("Y", strtotime($values["date"])); change date, month, year to your real field names. BTW: Do you have a typo in "month to be 10"? Did you mean 11 instead of 10?
|
G
|
gudon 11/16/2012 |
chrispa, |