"The row" (is it a row?) is from a sql statement result, from the table column named promo_type. There are 7 possible options for promo_type and only those selected will be put into the database (ie. John,Paul,George,Ringo)
As for multiple values packed together into a single string ... um ... I don't know, lol, that's the way I built it? However, I learned that those value packed together are called a string (not an array as I had assumed).
Even more exciting, after searching strings I found strpos() and ended up with this:
$findword = 'Paul';
$found = strpos($promo_type, $findword);
if ($found === false) {
} else {
echo "Paul";
}
]
It appears to work.
Bbo