I never said they where POORLY documented...I like the way it is pointed out at http://www.gwspikval.com/jooel/UDF/. I just understand the standard kix commands easier.
As said previously: I'm a starter. I took a look at http://www.gwspikval.com/jooel/UDF/ for the readfile() and writefile() functions. I was unable to find the writefile function so that was the end of my search. maybe the readfile is almost the same function as writefile but I could not determine this. I don't mean any disrespect,flame or whatever...you guys are the guru's and if I'm totally wrong than I stand corrected
#46349 - 2003-10-1005:55 PMRe: read value, perfom action, del value
RadimusRadimus Moderator
Registered: 2000-01-06
Posts: 5187
Loc: Tampa, FL
the writefile I had in mind was...
code:
Function WriteFile($File,$Array) Dim $element, $f $f=freefilehandle $=open($f,$file) if @error exit @error endif for each $element in $array $=writeline($f,$element+@crlf) next $=close($f) EndFunction
[ 10. October 2003, 17:56: Message edited by: Radimus ]