I have a file upload button and a submit button. I want when i upload a excel file from this file upload then data of that excel file should be read and print. excel file containing- Name- Dob- Number-
i m using this html code-
<html>
<body>
<form name="form" method="post">
<input type="file" name="cir" /><br />
<input type="submit" name="submit" value="submit" />
</form>
</body>
</html>
What will be php code for print data from excel file i.e. Name- Dob- Number-