cmb Posted October 31, 2011 Share Posted October 31, 2011 I get an undefined offset error when i try and call the array i made i know very little so I'm stuck and i don't know what to do <?php $file = fopen("playerstats.csv","r"); $data = array(); while (($csv_line = fgetcsv($file, 0, ";")) !== FALSE) { echo $csv_line; $number = $csv_line[0]; $name = $csv_line[1]; $half = $csv_line[2]; $goals = $csv_line[3]; $assists = $csv_line[4]; $SOG = $csv_line[5]; $shots = $csv_line[6]; $fouls = $csv_line[7]; $yellow = $csv_line[8]; $yellowred = $csv_line[9]; $red = $csv_line[10]; $CK = $csv_line[11]; $saves = $csv_line[12]; $data[] = array( 'name' => $name, 'half' => $half, 'goals' => $goals, 'assists' => $assists, 'sog' => $SOG, 'shots' => $shots, 'fouls' => $fouls, 'yellow' => $yellow, 'yellowred' => $yellowred, 'red' => $red, 'ck' => $CK, 'saves' => $saves ); } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head> <body> <table><tr><td>Number: </td><td><?php echo $data[0];?></td></tr></table> </body> </html> Quote Link to comment https://forums.phpfreaks.com/topic/250191-undefined-offset-error/ Share on other sites More sharing options...
MasterACE14 Posted October 31, 2011 Share Posted October 31, 2011 can you copy/paste the exact error so we know what line it's talking about? Quote Link to comment https://forums.phpfreaks.com/topic/250191-undefined-offset-error/#findComment-1283804 Share on other sites More sharing options...
cmb Posted October 31, 2011 Author Share Posted October 31, 2011 Notice: Undefined offset: 0 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 55 Quote Link to comment https://forums.phpfreaks.com/topic/250191-undefined-offset-error/#findComment-1283821 Share on other sites More sharing options...
MasterACE14 Posted October 31, 2011 Share Posted October 31, 2011 <?php echo $number; ?> where you have: <table><tr><td>Number: </td><td><?php echo $data[0];?></td></tr></table> assuming you want the number from the csv? Quote Link to comment https://forums.phpfreaks.com/topic/250191-undefined-offset-error/#findComment-1283825 Share on other sites More sharing options...
cmb Posted October 31, 2011 Author Share Posted October 31, 2011 i get this error Notice: Undefined index: name in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 55 Quote Link to comment https://forums.phpfreaks.com/topic/250191-undefined-offset-error/#findComment-1283827 Share on other sites More sharing options...
cmb Posted November 1, 2011 Author Share Posted November 1, 2011 when i do the <?php echo $number;?> i get this error Notice: Undefined variable: number in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 55 Quote Link to comment https://forums.phpfreaks.com/topic/250191-undefined-offset-error/#findComment-1283842 Share on other sites More sharing options...
MasterACE14 Posted November 1, 2011 Share Posted November 1, 2011 I'm not sure what's going on here, does the csv file have stuff in it? Quote Link to comment https://forums.phpfreaks.com/topic/250191-undefined-offset-error/#findComment-1283863 Share on other sites More sharing options...
cmb Posted November 1, 2011 Author Share Posted November 1, 2011 ya ha that was the first thing i checked when i just tell it to show the .csv info with this code $file = fopen("playerstats.csv","r"); while(! feof($file)) { print_r(fgetcsv($file, 0, ";")); echo "<br />"; } this is what it shows Array ( [0] => Number [1] => Name [2] => Half [3] => Goals [4] => Assists [5] => SOGs [6] => Shots [7] => Fouls [8] => Yellow Cards [9] => Yellow/Red Cards [10] => Red Cards [11] => CKs [12] => Saves [13] => ) Array ( [0] => Anthony [1] => Anthony [2] => 1 [3] => 0 [4] => 0 [5] => 0 [6] => 0 [7] => 0 [8] => 0 [9] => 0 [10] => 0 [11] => 0 [12] => 0 [13] => ) Array ( [0] => Anthony [1] => Anthony [2] => 2 [3] => 0 [4] => 0 [5] => 0 [6] => 0 [7] => 0 [8] => 0 [9] => 0 [10] => 0 [11] => 0 [12] => 0 [13] => ) Array ( [0] => Time Played:: 27:31 [1] => ) Array ( [0] => billy [1] => Billy [2] => 1 [3] => 0 [4] => 1 [5] => 0 [6] => 0 [7] => 0 [8] => 0 [9] => 0 [10] => 0 [11] => 0 [12] => 0 [13] => ) Array ( [0] => billy [1] => Billy [2] => 2 [3] => 0 [4] => 0 [5] => 0 [6] => 0 [7] => 0 [8] => 0 [9] => 0 [10] => 0 [11] => 0 [12] => 0 [13] => ) Array ( [0] => Time Played:: 00:00 [1] => ) Array ( [0] => chandler [1] => Chandler [2] => 1 [3] => 0 [4] => 0 [5] => 0 [6] => 2 [7] => 0 [8] => 0 [9] => 0 [10] => 0 [11] => 0 [12] => 0 [13] => ) Array ( [0] => chandler [1] => Chandler [2] => 2 [3] => 0 [4] => 0 [5] => 0 [6] => 0 [7] => 0 [8] => 0 [9] => 0 [10] => 0 [11] => 0 [12] => 0 [13] => ) Array ( [0] => Time Played:: 27:31 [1] => ) Array ( [0] => dawson [1] => Dawson [2] => 1 [3] => 1 [4] => 0 [5] => 1 [6] => 6 [7] => 0 [8] => 0 [9] => 0 [10] => 0 [11] => 0 [12] => 1 [13] => ) Array ( [0] => dawson [1] => Dawson [2] => 2 [3] => 0 [4] => 0 [5] => 0 [6] => 0 [7] => 0 [8] => 0 [9] => 0 [10] => 0 [11] => 0 [12] => 0 [13] => ) Array ( [0] => Time Played:: 27:31 [1] => ) Array ( [0] => dominic [1] => Dominic [2] => 1 [3] => 4 [4] => 0 [5] => 4 [6] => 7 [7] => 0 [8] => 0 [9] => 0 [10] => 0 [11] => 0 [12] => 0 [13] => ) Array ( [0] => dominic [1] => Dominic [2] => 2 [3] => 0 [4] => 0 [5] => 0 [6] => 0 [7] => 0 [8] => 0 [9] => 0 [10] => 0 [11] => 0 [12] => 0 [13] => ) Array ( [0] => Time Played:: 27:31 [1] => ) Array ( [0] => jarod [1] => Jarod [2] => 1 [3] => 0 [4] => 0 [5] => 0 [6] => 2 [7] => 0 [8] => 0 [9] => 0 [10] => 0 [11] => 0 [12] => 1 [13] => ) Array ( [0] => jarod [1] => Jarod [2] => 2 [3] => 0 [4] => 0 [5] => 0 [6] => 0 [7] => 0 [8] => 0 [9] => 0 [10] => 0 [11] => 0 [12] => 0 [13] => ) Array ( [0] => Time Played:: 27:31 [1] => ) Array ( [0] => justin [1] => Justin [2] => 1 [3] => 0 [4] => 0 [5] => 0 [6] => 1 [7] => 0 [8] => 0 [9] => 0 [10] => 0 [11] => 0 [12] => 0 [13] => ) Array ( [0] => justin [1] => Justin [2] => 2 [3] => 0 [4] => 0 [5] => 0 [6] => 0 [7] => 0 [8] => 0 [9] => 0 [10] => 0 [11] => 0 [12] => 0 [13] => ) Array ( [0] => Time Played:: 27:31 [1] => ) Array ( [0] => mikey [1] => Mikey [2] => 1 [3] => 0 [4] => 0 [5] => 0 [6] => 0 [7] => 0 [8] => 0 [9] => 0 [10] => 0 [11] => 0 [12] => 0 [13] => ) Array ( [0] => mikey [1] => Mikey [2] => 2 [3] => 0 [4] => 0 [5] => 0 [6] => 0 [7] => 0 [8] => 0 [9] => 0 [10] => 0 [11] => 0 [12] => 0 [13] => ) Array ( [0] => Time Played:: 27:31 [1] => ) Array ( [0] => nick [1] => Nick [2] => 1 [3] => 0 [4] => 0 [5] => 0 [6] => 1 [7] => 0 [8] => 0 [9] => 0 [10] => 0 [11] => 0 [12] => 0 [13] => ) Array ( [0] => nick [1] => Nick [2] => 2 [3] => 0 [4] => 0 [5] => 0 [6] => 0 [7] => 0 [8] => 0 [9] => 0 [10] => 0 [11] => 0 [12] => 0 [13] => ) Array ( [0] => Time Played:: 27:31 [1] => ) Array ( [0] => ryan [1] => Ryan [2] => 1 [3] => 0 [4] => 0 [5] => 0 [6] => 2 [7] => 0 [8] => 0 [9] => 0 [10] => 0 [11] => 0 [12] => 0 [13] => ) Array ( [0] => ryan [1] => Ryan [2] => 2 [3] => 0 [4] => 0 [5] => 0 [6] => 0 [7] => 0 [8] => 0 [9] => 0 [10] => 0 [11] => 0 [12] => 0 [13] => ) Array ( [0] => Time Played:: 27:31 [1] => ) Array ( [0] => tj [1] => TJ [2] => 1 [3] => 0 [4] => 0 [5] => 0 [6] => 1 [7] => 0 [8] => 0 [9] => 0 [10] => 0 [11] => 0 [12] => 0 [13] => ) Array ( [0] => tj [1] => TJ [2] => 2 [3] => 0 [4] => 0 [5] => 0 [6] => 0 [7] => 0 [8] => 0 [9] => 0 [10] => 0 [11] => 0 [12] => 0 [13] => ) Array ( [0] => Time Played:: 27:31 [1] => ) Array ( [0] => tyler [1] => Tyler [2] => 1 [3] => 2 [4] => 0 [5] => 2 [6] => 3 [7] => 0 [8] => 0 [9] => 0 [10] => 0 [11] => 1 [12] => 0 [13] => ) Array ( [0] => tyler [1] => Tyler [2] => 2 [3] => 0 [4] => 0 [5] => 0 [6] => 0 [7] => 0 [8] => 0 [9] => 0 [10] => 0 [11] => 0 [12] => 0 [13] => ) Array ( [0] => Time Played:: 27:31 [1] => ) Array ( [0] => ) Array ( [0] => ) Array ( [0] => ) Quote Link to comment https://forums.phpfreaks.com/topic/250191-undefined-offset-error/#findComment-1283864 Share on other sites More sharing options...
cmb Posted November 1, 2011 Author Share Posted November 1, 2011 I did a test and found that my code works when my csv only has 1 set of data like this Number;Name;Half;Goals;Assists;SOGs;Shots;Fouls;Yellow Cards;Yellow/Red Cards;Red Cards;CKs;Saves But when my csv looks like this Number;Name;Half;Goals;Assists;SOGs;Shots;Fouls;Yellow Cards;Yellow/Red Cards;Red Cards;CKs;Saves; Anthony;Anthony;1;0;0;0;0;0;0;0;0;0;0; Anthony;Anthony;2;0;0;0;0;0;0;0;0;0;0; Time Played:: 27:31; billy;Billy;1;0;1;0;0;0;0;0;0;0;0; billy;Billy;2;0;0;0;0;0;0;0;0;0;0; Time Played:: 00:00; chandler;Chandler;1;0;0;0;2;0;0;0;0;0;0; chandler;Chandler;2;0;0;0;0;0;0;0;0;0;0; Time Played:: 27:31; dawson;Dawson;1;1;0;1;6;0;0;0;0;0;1; dawson;Dawson;2;0;0;0;0;0;0;0;0;0;0; Time Played:: 27:31; dominic;Dominic;1;4;0;4;7;0;0;0;0;0;0; dominic;Dominic;2;0;0;0;0;0;0;0;0;0;0; Time Played:: 27:31; jarod;Jarod;1;0;0;0;2;0;0;0;0;0;1; jarod;Jarod;2;0;0;0;0;0;0;0;0;0;0; Time Played:: 27:31; justin;Justin;1;0;0;0;1;0;0;0;0;0;0; justin;Justin;2;0;0;0;0;0;0;0;0;0;0; Time Played:: 27:31; mikey;Mikey;1;0;0;0;0;0;0;0;0;0;0; mikey;Mikey;2;0;0;0;0;0;0;0;0;0;0; Time Played:: 27:31; nick;Nick;1;0;0;0;1;0;0;0;0;0;0; nick;Nick;2;0;0;0;0;0;0;0;0;0;0; Time Played:: 27:31; ryan;Ryan;1;0;0;0;2;0;0;0;0;0;0; ryan;Ryan;2;0;0;0;0;0;0;0;0;0;0; Time Played:: 27:31; tj;TJ;1;0;0;0;1;0;0;0;0;0;0; tj;TJ;2;0;0;0;0;0;0;0;0;0;0; Time Played:: 27:31; tyler;Tyler;1;2;0;2;3;0;0;0;0;1;0; tyler;Tyler;2;0;0;0;0;0;0;0;0;0;0; Time Played:: 27:31; i get this error Notice: Undefined offset: 2 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 15 Notice: Undefined offset: 3 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 16 Notice: Undefined offset: 4 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 17 Notice: Undefined offset: 5 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 18 Notice: Undefined offset: 6 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 19 Notice: Undefined offset: 7 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 20 Notice: Undefined offset: 8 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 21 Notice: Undefined offset: 9 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 22 Notice: Undefined offset: 10 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 23 Notice: Undefined offset: 11 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 24 Notice: Undefined offset: 12 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 25 Notice: Undefined offset: 2 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 15 Notice: Undefined offset: 3 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 16 Notice: Undefined offset: 4 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 17 Notice: Undefined offset: 5 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 18 Notice: Undefined offset: 6 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 19 Notice: Undefined offset: 7 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 20 Notice: Undefined offset: 8 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 21 Notice: Undefined offset: 9 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 22 Notice: Undefined offset: 10 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 23 Notice: Undefined offset: 11 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 24 Notice: Undefined offset: 12 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 25 Notice: Undefined offset: 2 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 15 Notice: Undefined offset: 3 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 16 Notice: Undefined offset: 4 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 17 Notice: Undefined offset: 5 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 18 Notice: Undefined offset: 6 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 19 Notice: Undefined offset: 7 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 20 Notice: Undefined offset: 8 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 21 Notice: Undefined offset: 9 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 22 Notice: Undefined offset: 10 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 23 Notice: Undefined offset: 11 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 24 Notice: Undefined offset: 12 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 25 Notice: Undefined offset: 2 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 15 Notice: Undefined offset: 3 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 16 Notice: Undefined offset: 4 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 17 Notice: Undefined offset: 5 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 18 Notice: Undefined offset: 6 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 19 Notice: Undefined offset: 7 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 20 Notice: Undefined offset: 8 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 21 Notice: Undefined offset: 9 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 22 Notice: Undefined offset: 10 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 23 Notice: Undefined offset: 11 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 24 Notice: Undefined offset: 12 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 25 Notice: Undefined offset: 2 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 15 Notice: Undefined offset: 3 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 16 Notice: Undefined offset: 4 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 17 Notice: Undefined offset: 5 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 18 Notice: Undefined offset: 6 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 19 Notice: Undefined offset: 7 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 20 Notice: Undefined offset: 8 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 21 Notice: Undefined offset: 9 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 22 Notice: Undefined offset: 10 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 23 Notice: Undefined offset: 11 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 24 Notice: Undefined offset: 12 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 25 Notice: Undefined offset: 2 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 15 Notice: Undefined offset: 3 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 16 Notice: Undefined offset: 4 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 17 Notice: Undefined offset: 5 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 18 Notice: Undefined offset: 6 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 19 Notice: Undefined offset: 7 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 20 Notice: Undefined offset: 8 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 21 Notice: Undefined offset: 9 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 22 Notice: Undefined offset: 10 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 23 Notice: Undefined offset: 11 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 24 Notice: Undefined offset: 12 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 25 Notice: Undefined offset: 2 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 15 Notice: Undefined offset: 3 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 16 Notice: Undefined offset: 4 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 17 Notice: Undefined offset: 5 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 18 Notice: Undefined offset: 6 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 19 Notice: Undefined offset: 7 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 20 Notice: Undefined offset: 8 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 21 Notice: Undefined offset: 9 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 22 Notice: Undefined offset: 10 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 23 Notice: Undefined offset: 11 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 24 Notice: Undefined offset: 12 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 25 Notice: Undefined offset: 2 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 15 Notice: Undefined offset: 3 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 16 Notice: Undefined offset: 4 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 17 Notice: Undefined offset: 5 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 18 Notice: Undefined offset: 6 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 19 Notice: Undefined offset: 7 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 20 Notice: Undefined offset: 8 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 21 Notice: Undefined offset: 9 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 22 Notice: Undefined offset: 10 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 23 Notice: Undefined offset: 11 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 24 Notice: Undefined offset: 12 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 25 Notice: Undefined offset: 2 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 15 Notice: Undefined offset: 3 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 16 Notice: Undefined offset: 4 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 17 Notice: Undefined offset: 5 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 18 Notice: Undefined offset: 6 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 19 Notice: Undefined offset: 7 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 20 Notice: Undefined offset: 8 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 21 Notice: Undefined offset: 9 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 22 Notice: Undefined offset: 10 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 23 Notice: Undefined offset: 11 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 24 Notice: Undefined offset: 12 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 25 Notice: Undefined offset: 2 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 15 Notice: Undefined offset: 3 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 16 Notice: Undefined offset: 4 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 17 Notice: Undefined offset: 5 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 18 Notice: Undefined offset: 6 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 19 Notice: Undefined offset: 7 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 20 Notice: Undefined offset: 8 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 21 Notice: Undefined offset: 9 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 22 Notice: Undefined offset: 10 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 23 Notice: Undefined offset: 11 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 24 Notice: Undefined offset: 12 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 25 Notice: Undefined offset: 2 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 15 Notice: Undefined offset: 3 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 16 Notice: Undefined offset: 4 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 17 Notice: Undefined offset: 5 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 18 Notice: Undefined offset: 6 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 19 Notice: Undefined offset: 7 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 20 Notice: Undefined offset: 8 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 21 Notice: Undefined offset: 9 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 22 Notice: Undefined offset: 10 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 23 Notice: Undefined offset: 11 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 24 Notice: Undefined offset: 12 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 25 Notice: Undefined offset: 2 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 15 Notice: Undefined offset: 3 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 16 Notice: Undefined offset: 4 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 17 Notice: Undefined offset: 5 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 18 Notice: Undefined offset: 6 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 19 Notice: Undefined offset: 7 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 20 Notice: Undefined offset: 8 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 21 Notice: Undefined offset: 9 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 22 Notice: Undefined offset: 10 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 23 Notice: Undefined offset: 11 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 24 Notice: Undefined offset: 12 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 25 Notice: Undefined offset: 1 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 14 Notice: Undefined offset: 2 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 15 Notice: Undefined offset: 3 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 16 Notice: Undefined offset: 4 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 17 Notice: Undefined offset: 5 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 18 Notice: Undefined offset: 6 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 19 Notice: Undefined offset: 7 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 20 Notice: Undefined offset: 8 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 21 Notice: Undefined offset: 9 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 22 Notice: Undefined offset: 10 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 23 Notice: Undefined offset: 11 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 24 Notice: Undefined offset: 12 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 25 Notice: Undefined offset: 1 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 14 Notice: Undefined offset: 2 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 15 Notice: Undefined offset: 3 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 16 Notice: Undefined offset: 4 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 17 Notice: Undefined offset: 5 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 18 Notice: Undefined offset: 6 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 19 Notice: Undefined offset: 7 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 20 Notice: Undefined offset: 8 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 21 Notice: Undefined offset: 9 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 22 Notice: Undefined offset: 10 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 23 Notice: Undefined offset: 11 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 24 Notice: Undefined offset: 12 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 25 Notice: Undefined offset: 1 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 14 Notice: Undefined offset: 2 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 15 Notice: Undefined offset: 3 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 16 Notice: Undefined offset: 4 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 17 Notice: Undefined offset: 5 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 18 Notice: Undefined offset: 6 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 19 Notice: Undefined offset: 7 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 20 Notice: Undefined offset: 8 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 21 Notice: Undefined offset: 9 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 22 Notice: Undefined offset: 10 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 23 Notice: Undefined offset: 11 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 24 Notice: Undefined offset: 12 in C:\xampp\htdocs\PhotosByChristian\Untitled-1.php on line 25 Quote Link to comment https://forums.phpfreaks.com/topic/250191-undefined-offset-error/#findComment-1284082 Share on other sites More sharing options...
cmb Posted November 2, 2011 Author Share Posted November 2, 2011 I followed this tutorial http://www.nawrik.com/programming/php/create-a-php-array-from-a-csv-file/ and it all works now Quote Link to comment https://forums.phpfreaks.com/topic/250191-undefined-offset-error/#findComment-1284445 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.