$interest = str_replace(' ', '+', strip_tags($_POST['item_meta'][37]), $i);Thank you
Oh okay, I didn't even think of it as being treated as an array. Thank you! So then if I want to check for each item selected I could just iterate through the array or would I have to check each key-value for a boolean?
foreach ($interestArray as $value) {
$interest .= strip_tags($value) . ',';
}
Please login or Register to submit your answer