WMPRO, WMMINI FW >= 1.0 WMMEGA FW >= 2.0
Print data to the current output stream such as a web page or terminal
$data: The data to print
None
<pre><? print("Hello\r\n"); print("World\r\n"); ?></pre>
The above example will output:
Hello World
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