I need help or advice on how to add or combine the value of array with same key.
For example:
Array(
[price] => 123
[category] => Fiction
[bookname] => Any-Book
[type] => Futuristic
)
Array (
[price] => 145
[category] => Fantasy
[bookname] => Any-Book
[type] => Futuristic
)
Through many attempt I was not able to achieve the result I wanted it should be:
Array (
[price] => 268
[category] => Fantasy/Fiction
[bookname] => Any-book
[type] => Futuristic
)
I just need to combine the two they are essentially the same thing or needed to be bundled.