php version question
Posted: Fri Aug 18, 2006 5:09 am
hi guys,
for some reason the method fgetcsv() doesnt work even though im using php version 4.3.11? it was implemented in verison 3.0.8
i have the same code on a platform running php version 5.1.2 and it works on that?!!!
anyone have any ideas?
many thanks for any help.
benny
heres the code in case your interested:
for some reason the method fgetcsv() doesnt work even though im using php version 4.3.11? it was implemented in verison 3.0.8
i have the same code on a platform running php version 5.1.2 and it works on that?!!!
anyone have any ideas?
many thanks for any help.
benny
heres the code in case your interested:
Code: Select all
$handle = fopen("sku1.csv","r");
while(($data = fgetcsv($handle,"",",")) != false)
{
....
}