“Newline no funciona PHP” Código de respuesta

PHP Newline

"\r\n"
Unusual Unicorn

NL2BR () PHP

// add to the functions file
function translateLineBreaks($string) {
	$result = nl2br ($string);
  	return $result;
}
Cheerful Cockroach

Newline no funciona PHP

// When you run a PHP script in a browser, it will be rendered as HTML by default.
// Use <br /> instead or modify the header to content type plain text
echo "Hello <br /> World";
Shy Semicolon

Respuestas similares a “Newline no funciona PHP”

Preguntas similares a “Newline no funciona PHP”

Más respuestas relacionadas con “Newline no funciona PHP” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código