View Single Post
  #2 (permalink)  
Old 03-26-2008, 08:13 AM
speed speed is offline
WebProWorld Veteran
 
Join Date: Aug 2003
Location: Cornwall, UK
Posts: 972
speed RepRank 1
Default 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.
Reply With Quote