Hello All,
I need to make a Php script that will run at the command line.
I have a text file that gets updated every hour. The text file has the data in a sql statement.
The contents of the text is:
INSERT INTO testdata VALUES ('154A', 'user1');
INSERT INTO testdata VALUES ('155A', 'user2');
INSERT INTO testdata VALUES ('156A', 'user3');
INSERT INTO testdata VALUES ('157A', 'user4');
named users.txt
Thank you
😕