i have hundreds of codes like this with different variables names
value="<?php echo($client_name); ?>"
value="<?php echo($email); ?>"
i want to do a wild cards replace for the whole site so all of them will be
value="<?php echo(htmlentities($client_name)); ?>"
value="<?php echo(htmlentities($email)); ?>"
what the replace expression will be? in dreamweaver or TexPad.
any other help solutions, then i go to change it one by one?
thanks.