input a,b,c,d , a,b,c,d are four user definable variable<br>
open "filename.ext" for append as #1 ' opening a data file<br>
write #1 ,a,b,c,d ' write four variable in file<br>
close #1 ' close the file<br>
<br>
now , you have to read it the way you wrote it , if you <br>
wrote a first you have to read a first.<br>
<br>
file you made will be like this :<br>
<br>
Filename.ext<br>
<br>
<a> , <b> , <c> , <d><br>
<br>
<br>
you can also use print #1 instead of write #1<br>
<br>
AMIR<br>
<br>
<br>
<br>