Strings Php

  $astring = "Hello\nWorld\n\nHow are you?";
  echo nl2br ($astring) . "";
  
  $textblock = "this is a test. this is a test. this is a test. this is a test. this is a test. !";
  echo wordwrap ($textblock, 20, "");
?>