![]() |
Alexey admin 9/22/2006 |
Hi, |
G
|
gawde author 9/22/2006 |
Hi, please ensure that you spell the field name properly. Field names are case sensitive here. If this doesn't help please show me your BeforeEdit and AfterEdit events code.
|
![]() |
Alexey admin 9/23/2006 |
Greg, $strSQL = "select `Co_Approved`, 'Co_IDauto' from `_Company` where ".$where; with the following: $strSQL = "select `Co_Approved`, `Co_IDauto` from `_Company` where ".$where; |
G
|
gawde author 9/23/2006 |
Greg, you confuse apostrophes (') with backquotes (`) in your SQL string. Replace this line in your code: with the following:
|