Last Updated: February 25, 2016
·
536
· dubrod

Database Integer Problem

If your getting errors with array_sum or any simple integer based PHP function from a database where you imported data, like a CSV, its important you make sure the imported data is just numbers.

preg_replace('/[^0-9\.]/', '', ($row[22]))  

will ensure you just have integer data