Re: any help with: Send data to a Text File
try this:
PHP Code:
$printFileName = $plainfiledate;
$printFileHandle = fopen($printFileName, 'a') or die("can't open file");
$ln=$line['PersonalID'].$line['GroupName'].$line['SlipNum'].$line['DrawNum'].$line['Num1'].$line['Num2'].$line['Num3'].$line['Num4'].$line['Num5'].$line['Num6'].$line['Num7'];
fwrite($printFileHandle,$ln);
fclose($printFileHandle);
Don't get me wrong as I believe if and when I help someone I also help myself whereby whatever someone learns I also learn.
But I will also accept credits or reps if you really want to part with it.