I need to read a text file and have the contents split into three different variables...
list($one, $two, $three) = split(",", $whattosplit);
But I don't know how to get the file contents into the variable $whattosplit. Any help is greatly appreciated!
-tucker-