Welcome Guest, Not a member yet? Register   Sign In
Upload csv file straight into array
#2

[eluser]xwero[/eluser]
If you upload the file it's saved as a temp file. You can get the content by using
Code:
$temp_csv = $_FILES['userfile']['tmp_name'];
$content = file_get_contents($temp_csv);
unlink($temp_csv);
What the upload library does additionally is move the file to the destination directory.


Messages In This Thread
Upload csv file straight into array - by El Forum - 09-22-2008, 02:26 AM
Upload csv file straight into array - by El Forum - 09-22-2008, 02:55 AM
Upload csv file straight into array - by El Forum - 09-22-2008, 03:00 AM



Theme © iAndrew 2016 - Forum software by © MyBB