Forum Moderators: coopster
$myField = fgetcsv($myfile, 1024);
for ($x = 3; $x < count($myField); $x++) {
print($myField[0]);
}
PHP Notice: Use of undefined constant x - assumed 'x' in list.php on line 19
PHP Notice: Undefined index: x in list.php on line 19
I am not sure where I need to head with this. I am sure I am not looking at the big picture here. I have written a million loops but I cant get this one down for some reason.