I have this warning here: Function split() is deprecated
I tried replacing it with the explode function. I don’t know, maybe I did something wrong, but this is the part of the code apparently deprecated, could you please help me with this?
thanks!
$kt = split(' ', $levels);
What did you try with explode?
Should break it into an array on each space in the string.