I have zk9500 device for fingerprint reader and I looking for tutorial for connecting / operate with PHP.
In SDK and Documentation is not very clear for me, I have though about connecting with Web Assembly but I know nothing about that, and after learning it for little while I still don't understand the main concept and not found solution for my case.
I found library ZKLibrary and for now is still wondering how to connecting to my zk9500, because I cannot find documentation about the IP and PORT in zk9500,
this is the simple sample code from the library
<?php
require 'zklibrary.php';
$zk = new ZKLibrary('127.0.0.1', 4370); // I cannot find this IP and Port configuartion
$zk->connect();
$zk->disableDevice();
$users = $zk->getUser();
var_dump($users)
$zk->enableDevice();
$zk->disconnect();
?>
Maybe anyone know how to find the IP and Port, or any suggestion for working this to be working
Thank you.