Hi am making a control panel for an user to input some info on a textarea input field and putting the data in a mysql table.
I need to replace the enter stroke with <br><br> so when i display it i would show up properly.
obviusly the input is via html form <textarea> and am saving to mysql using PHP
$goodtext=str_replace("\"",""",$rawtext);
In this example am replacing the " character to avoid any mysql errors, i guess it's something like this right?