How to coding to support import Excel file to auto insert Excel data into PHP+HTML input form?
Because I try coding but can't to support import Excel file to auto insert Excel data into PHP+HTML input form.
Sample code and file at the bottom.
excelimport.xlsx(Excel file)
excelimport.php(PHP Code)
<!DOCTYPE html>
<html>
<body>
<h3>Select files to upload:</h3>
<form>
<label for="myfile">Select files:</label>
<input type="file" id="myfile" name="myfile" accept=".xlsx, .xls, .csv, .txt">
<input type="submit"><br><br>
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname" value=""><br><br>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname" value=""><br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>