I\'ve searched and yet nothing I find seems to work.
My problem is that when using special characters as \' the input query breaks. Now, I tried using the mysqli_real_es
You forgot your resource parameter:
$title = mysqli_real_escape_string($connect, $_POST['title']);
PHP Manual
Or
$title = $connect->real_escape_string($_POST['title']);