Hi
I'm using one database with 9 tables. I need to download periodicaly all data from tables, save them as text file on local machine. (.txt). Files are to be called as table named in database: (table1.txt).Fields have to be separated with comma(,)...Here is an example of output I want to have in file:
"field1","field2","field3","field4" /this for first record /
"field1","field2","field3","field4" /this for second record */
.
.
.
until there are records to download.
I have read about tbl_dump but I'm not sure on how to use it directly in my php script. Any help is very appreciated. Thank you all. Way