Hope this is the correct forum to write. If not, kindly redirect the right section.
I have this problem of removing the double quote. Here is an example.
$movie = [domain.com]
The $movie will provide different source dynamically. This means the next time, it can show as:
$movie = [domain.com]
My problem is how to remove the double quote at the end.
I tried doing this:
$characters_to_remove = array('"');
$replace_with = array('');
$movie = str_replace($characters_to_remove,$replace_with,$r ow['movie']);
But it turns out blank when I echo $movie
As I am not good for programming, any help or advice is greatly appreciated.
Thanks!