I need to load 400+ xml files in a single mysql table using phpmyadmin. These files are local. I know I can import one single file per time (clicking on "import"), but I suppose there's a sql code to load all files automatically.
I tried "LOAD XML LOCAL INFILE 'filename.xml' INTO TABLE tablename;" but it returns this error: "#2068 - LOAD DATA LOCAL INFILE is forbidden, check related settings like mysqli.allow_local_infile|mysqli.local_infile_directory or PDO::MYSQL_ATTR_LOCAL_INFILE|PDO::MYSQL_ATTR_LOCAL_INFILE_DIRECTORY".
I tried to see if here "Load data local infile" command not allowed there was the solution but they say I should modify the file "my.cnf". I don't have this file, so I'm stacked.
Thank you!