Hi there. I'm getting a parse error with the statement below. I'm just trying to get rid of all the ' in the array.
$fields = str_replace(''','',$fields);
Use double quotes
$fields = str_replace("'", "", $fields);
Hi, it's me Tracy🙂 It works perfect now. Thanks once again!!