print("Hello\r\n");
print("World\r\n");
?>
The above example will output:
Hello
World
====Note====
This function does not add new line characters (CR/LF) to the output but if that is needed you can easily append them with ''\r\n'' or ''\n''
====See Also====
[[debug()]] - Print to debug output
[[log()]] - Print to the System Log (or optional file)
[[print_r()]] - Dump the contents of an array to the current output
[[printf()]] - Print a formatted string to standard output