$sql = "insert into admin values ('','test1','test1',password('test83'))";
What I am doing here is inserting a last name, user id and password(hashed) into a table. The first '' is autoincremented. I have 100 dfferent names, user id and passwords to insert. How can I write this to include all 100. Will I need to write one insert statement, upload it 100 times. I would not mind uploading a .txt file, exported from a access table, but how would I handle the hash password
What I am doing here is inserting a last name, user id and password(hashed) into a table. The first '' is autoincremented. I have 100 dfferent names, user id and passwords to insert. How can I write this to include all 100. Will I need to write one insert statement, upload it 100 times. I would not mind uploading a .txt file, exported from a access table, but how would I handle the hash password