Were having a project "time-in System", the concept is, instead of manual input of time-in details in the form, we will be using the bar code, from our ID, the barcode scanner will automatically detect the each assign barcode of the employee and then it will automatically capture the barcode in the php login field and then automatically post it in the database.
Barcode and PHP
Collapse
X
-
Is the issue the creation of the bar code? There are several PHP classes that can do this for you. Just google PHP Classes and barcodes and you should find something that can help you. Also you could check this out:Originally posted by tiksyaWere having a project "time-in System", the concept is, instead of manual input of time-in details in the form, we will be using the bar code, from our ID, the barcode scanner will automatically detect the each assign barcode of the employee and then it will automatically capture the barcode in the php login field and then automatically post it in the database.
Barcode Thread
Hope that helps! Hey I made it to 100!
GregComment
-
There you can find a answer to this from phpclasses.org.
Search the same category there were few classes that you can use.Thanks!Comment
-
Nope, actually not the generation of the bar, our barcode scanner can already translate the barcode from our idcard...my problem is what script can be use on how to post automatically(t o the database) the detected barcode information.Originally posted by gregerlyIs the issue the creation of the bar code? There are several PHP classes that can do this for you. Just google PHP Classes and barcodes and you should find something that can help you. Also you could check this out:
Barcode Thread
Hope that helps! Hey I made it to 100!
GregComment
-
doesn't the bar code reader send the barcode number in ascii text format? Possibly with CRNL on the end - as if it had come in from the keyboard by a user? I know some of them do, although I have not done this in PHP.
As I understand it, what you are looking for is an input method in PHP that accepts the barcoded information sent by the barcode reader. So what have you tried so far?Comment
Comment