Enclosure html into a string and echo out : echo « Utility Function « PHP






Enclosure html into a string and echo out

 
<html>

<?php

  $str = "<textarea rows=\"5\" cols=\"48\">\"this is a test!\"\n(test!)\n\n \t\t\t Caligula </textarea>";

  echo( $str );
?>

</html>
  
  








Related examples in the same category

1.A Simple "Hello World" Script
2.Add lines and spaces to textarea
3.Correct escaping of special characters
4.Formatting of Numeric Data
5.Key-value array elements
6.Echo out html tags
7.echo versus print
8.how arrays embedded in strings will be converted.
9.echo is more useful because you can pass it several parameters
10.embedded variables are handled when the string is created with single or double quotes.