C
|
cgphp 7/31/2012 |
Try to echo the query: $strSQLExists = "select * from righefattura where numfattura=".$data['numfattura'] ." and fornitore=".$data['fornitore'];
|
C
|
CC88 author 7/31/2012 |
Thank you very much. |
C
|
cgphp 7/31/2012 |
Something is wrong in the previous query. Try to remove the single quotes from field names: $str = "select numfattura, fornitore from fattura where " .$where; |