1

I have developed an online leave management system in PHP, MySQL, which is working fine, I have only one issue, we have to upload a csv file of daily captured data. I want to do it automatically.

We have a Star Link Attendance machine.

Star Link software dose not provide any custom report format.

I want to develop an application module which can fetch data from this machine? Is it possible? and in which language we can do it (PHP, C#, Java) ?

Any resource link will be very helpful.

Mong Zhu
  • 23,309
  • 10
  • 44
  • 76
Saqueib
  • 3,484
  • 3
  • 33
  • 56

3 Answers3

1

I have solved this problem.

All data fetched by machine are stored in mssql database, I simply developed a programme in C# .Net which takes the data from mssql and export it in CSV file.

Saqueib
  • 3,484
  • 3
  • 33
  • 56
0

I like Java, but every language is okay, if it has lib- to parse CSV file. you may using FTP,HTTP to get that file.

meadlai
  • 895
  • 1
  • 9
  • 22
  • I need to know how to get data out of machine. some code would be very beneficial – Saqueib Jun 11 '12 at 08:59
  • Is there any driver to read/comunicate with that machine? It must have a line to connect to your pc/server to read the data. make a call to StarLink – meadlai Aug 15 '12 at 06:41
0

Try this It uses the UDP protocol to communicate to the Attendance Machine. And this for Python

dnaextrim
  • 1
  • 2