Hello readall() would serve to grab all text from a file and play directly into the output.

The standard would be this here.
 Code:
$handle = freefilehandle()
$open($handle, "file.txt")
while (@error = 0)
$texto = $texto + readline($handle) + @crlf
loop


I wanted one more option.
 Code:
$handle = freefilehandle()
$open($handle, "file.txt")
$texto  = ReadAll($handle, @crlf)


Edited by AndreLuiz (2017-08-14 05:56 AM)