Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
$textfieldfromdatabase = "This is \r\n some text \r\n that i want to delimit";
$str = str_replace(array("\r\n", "\n"), "</li><li>", $textfieldfromdatabase);
echo "<ul><li>".$str."</li></ul>";
$textfieldfromdatabase = "This is \r\n some text \r\n that i want to delimit";
$str = str_replace(array("\r\n", "\n"), "***{}***", $textfieldfromdatabase);
$array = explode("***{}***", $str);
echo "<ul>";
foreach ($array as $val):
$val = trim($val);
if (!empty($val)):
echo "<li>$val</li>";
endif;
endforeach;
echo "</ul>";