I have an array that is built by the selected chekbox results ...
It returns with var_dump
:
array(3) { [0]=> string(7) "BXT0022" [1]=> string(7) "BXT0010" [2]=> string(7) "BXT0024" }
If you have something in the array or if it is empty,
string(0) ""
How can I do an if (does not have anything in the array ) does the implode ... I tried with count
of the array but always gives 1 even with nothing chosen, issset
also has something there and it does not work ... I do not know what else to use ...
Does the array return the length of the string ?