When i use an html form to post a file, how do i address that file's contents in php?
will this work?
$data = $_POST['file'];
$pre = explode(";;;", $data);
the file is a text file btw
UPDATE
the csv is field enclosed with ::: and lines terminated by ;;;. How can i load this into a variable without breaking the php script, which is what is happening now