I have this text stored in mySQL
This is the mighty boat "Vulcan".
But when I echo it out only this text shows:
This is the mighty boat
I want to replace " with ' like this on the fly:
This is the mighty boat 'Vulcan'.
I have tried str_replace but can't get it to work.