Reputation: 63
I use this but not working, returns same value ($teamdatarow['color1']
)
$color1 = str_replace('"', '', $teamdatarow['color1']);
Upvotes: 0
Views: 1191
Reputation: 152304
Just try with:
$color1 = str_replace('"', '', $teamdatarow['color1']);
Upvotes: 2