Skip to content
Advertisement

How to split and sum comma separated multiple line values in php

I have one issue. How can i split and sum up multiple comma separated line values in php. Following my mysql table screenshot enter image description here

here my date wise miles filter page

enter image description here

I want to output miles colums like following when users enter from and to date.

JavaScript

my php code:

JavaScript

I tried to use following code to split

JavaScript

Advertisement

Answer

Break per line, break each row to parts, display the name and sum up the values. Try:

Before the loop:

JavaScript

Instead of:

JavaScript

In the loop:

JavaScript

After the loop:

JavaScript

And please, use prepared statements, your application is unsecure.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement