
24 Sep
2009
24 Sep
'09
9:21 a.m.
On Thu, Sep 24, 2009 at 9:14 AM, thea maina wrote:
Iterate this for infinity. - Hi guys, i hit a mind lock.. How can i iterate this for infinity. thanks ----------------------------------------------------------------
while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
maybe this ? while (TRUE) { while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) { } } but are you dealing with infinite data ?