Hello,
I have a file which ill set into a variable …
[php]$HELP = file_get_content(‘help.txt’)[/php]
I want to se each line of this archive in a Array, example:
How do i set this variable $HELP :
Hello Please Help Me
Into a Array:
$HELP[0] = Hello $HELP[1] = Please $HELP[2] = Help $HELP[3] = Me
(the file will not have 4 lines…)
Thanks