hi
can someone dumb this out for me:
$fd = fopen ("/tmp/inputfile.txt", "r");
while (!feof ($fd)) {
$buffer = fgets($fd, 4096);
echo $buffer;
}
fclose ($fd);
in the script above what does the 4096 stands for. I've been using for for a while and never know exactly what it means.
Much appreciation for this site and the folks who replies.
Thanks, Gizzmo.