I\'m trying to find parameters outside quotes (Single ou Double)
$sql = \" INSERT INTO Notifify (to_email, msg, date_log, from_email, ip_from) VALUES (
You can use a negative look-behind. This way you will match exactly what's needed.
preg_match_all('/(?
Demo