I get values ββfrom textare as show in double qoutes
"Hi_i_am_working_on_javascript_comment_box"
how to remove underline value from it ...
Use str_replace()for example. Like this ( see Proof here ):
str_replace()
$input = 'Hi_i_am_working_on_javascript_comment_box'; $output = str_replace('_', ' ', $input);
use str_replacewith php:
str_replace
$string=str_replace("_"," ",$string);
in sql
replace('Hi_i_am_working_on_javascript_comment_box', '_', ' ')