smart card and PHP

is it posibble to write a program with PHP to communicate with smart card reader??
i didn't find any example in the internet...
what should i do? do i need a software to convert C++ / C/java program to PHP? it exist?
[229 byte] By [farhan26] at [2007-11-19 12:12:05]
# 1 Re: smart card and PHP
PHP is a server-side language. You could use it to read files and to write to it but nothing overly extensive.
PeejAvery at 2007-11-10 3:58:17 >
# 2 Re: smart card and PHP
is it posibble to write a program with PHP to communicate with smart card reader??

Well not directly.
Assuming that one doesn't exsist already, you would have to write an extension to PHP in C. Providing an API for the smartcard reader. Which could then be used to control the smartcard reader from PHP.

Here's the documentation for writing extensions to PHP.
http://www.php.net/manual/en/zend.creating.php
khp at 2007-11-10 3:59:17 >