Re: How to remove double quote?
if $row['movie'] holds the string http://domain.com/asjierek" then to remove all "
$movie = str_replace('"', '', $row['movie']);
If that doesn't work then what is the contents of $row['movie'], you can do echo $row['movie']; to print it on the browser.
|