sql statement
$sql_insert = "insert into tabs(name,singer,address) values ("$name","$singer","$songaddress")";
$res_insert = $conn->query($sql_insert);
question
single quotation marks appear in my $name, $singer, and $songaddress variables, resulting in conflicts between quotation marks. At this time, the statement of sql cannot be executed. How to solve this problem?