If i do this:
$ingredients = str_replace("
", "<br>", $ingredients);
$ingredients = str_replace("'", "<br>", $ingredients);
$ingredients = str_replace(";", "", $ingredients);
It works, how to make it only one line?
My problem is that when I copy and paste a text from any text editor in a form MySQl renders it's value with ' etc...
any solution?
thanks