Skip to content

Instantly share code, notes, and snippets.

@telefonosuci
Created January 17, 2018 16:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save telefonosuci/e4211c9009aaa99595e363eda8109d09 to your computer and use it in GitHub Desktop.
Save telefonosuci/e4211c9009aaa99595e363eda8109d09 to your computer and use it in GitHub Desktop.
Read data from file txt
<?php
$my_database_txt = 'numeri.txt';
$array_righi = file($my_database_txt);
print_r( $array_righi);
$A=explode("|",$array_righi[0]);
$B=explode("|",$array_righi[1]);
$C=explode("|",$array_righi[2]);
$D=explode("|",$array_righi[3]);
$E=explode("|",$array_righi[4]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment