Hello, you need to implement the unloading from the MySQL table to the test file.
That is, I have a table for example with the string email.
How to make for example a button on the site to download all email from the mysql table to the test file?
Hello, you need to implement the unloading from the MySQL table to the test file.
That is, I have a table for example with the string email.
How to make for example a button on the site to download all email from the mysql table to the test file?
It is done elementary using SELECT ... INTO OUTFILE
Source: https://ru.stackoverflow.com/questions/613890/
All Articles