Is there any needs to change the table structure or which function, so please put the solution here. thanks in advance.
My example is as:
$find_regex = 'Δ';
$replace_regex = 'Δ';
$sql = mysql_query("INSERT INTO regex_table (find_regex, replace_regex, import_date) VALUES ('$find_regex', '$replace_regex')");
When I run the above code, it executed successfully but instead of symbol(find_regex) it insert '?'
One more thing I have already tried all the suggestion likes htmlentities, htmlspecialchar and so on provided in others questions in stackoverflow but didn't resolved.