I have 2 txt file that's have data like that :
Account.txt
12345
12346
12347
Card.txt
1111
2222
3333
i want to loop both txt file in sametime and input into Text box Card and textbox account .
<form action="">
Account:<br>
<input type="text" name="acc">
<br>
Card:<br>
<input type="text" name="card">
</form>
<button type="submit" form="form1" value="Submit">Bind</button>
I already try to loop but i can only loop one txt file . i can't loop 2 txt file in same time to input textbox .
Can anyone give me any suggestion ?