Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. if(isset($_FILES["plik"]))
  2. {
  3. $f = $_FILES["plik"]['tmp_name'];
  4. move_uploaded_file($_FILES['plik']['name'],'tmp/'.$_FILES['plik']['name']);
  5. $csvData=file_get_contents($_FILES['plik']['tmp_name']);
  6. $array['rows']=explode("\n",$csvData);
  7. foreach ($array['rows'] as $key => $value) {
  8.   $array['rows'][$key] = explode(';',$value);
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement