listed with numerical values in my table, i'm trying to insert cummulative values through php to mysql table. so that i can fetch them easily using select query for later uses.
I'm trying to figure out a php script which can insert values into this table (dmatrix), tried mysql variables but failed to send them/ insert into mysql table Expected output:
id | datac |Cummulative
1 | 200 | 200
2 | 300 | 500
3 | 400 | 900
4 | 500 | 1400
Thanks in advance. please help me out friends