C
|
cgphp 8/16/2012 |
You have to review your select query. It returns more than one record as result. You can limit the number of records in the result with the LIMIT clause, but it depends on the logic of your query: $strSQLExists1 = "select idcliente, cpagas, pagaduria, nombres, from saldosuscriptor where idcliente !=".$rawvalues["cedula"]." LIMIT 1"; |
M
|
macalister author 8/16/2012 |
Thanks Cristian. |
C
|
cgphp 8/17/2012 |
You can control the number of times the code is executed using a session var. Unset it when the import operation is finished. |
M
|
macalister author 8/17/2012 |
You can control the number of times the code is executed using a session var. Unset it when the import operation is finished.
|