I want to remove the symbol from the title. When any user post their ads in my site they write anything with some symbol like "&, +, -, _, $, ^, =,". This type of symbol i want to remove automatic from the title. I have tried for the space and success. I used for removing space with "-" this code
  <?php 
  $title = str_replace(' ', '-', $row['title']) 
  ?>
I want to all this "&, +, -, _, $, ^, =," symbol. Please help me.
 
     
     
     
     
     
    