Hai...
Anybody can help me how to open file with php and then run in cron (or CLI)
my coding like this :
#/usr/local/bin
$fd = fopen("directory_file","r");
while (!feof($fd)) {
bla....bla...bla....
}
fclose($fd);
but it said "unexpected token `$fd=fopen("directory_file","r")' "
Thanks