Actually, I would try to read weight machine data through PHP webpage(website). I think its read through serial port. but I have try many of option to read serial port data but it doesn't work. I have see weight machine data through hyperterminal. please help me.
require './php_serial.class.php';
$serial = new phpSerial;
$serial->deviceSet("COM1");
$serial->confBaudRate(2400);
$serial->confParity("none");
$serial->confCharacterLength(8);
$serial->confStopBits(1);
$serial->confFlowControl("none");
$serial->deviceOpen();
$read = $serial->readPort();
$serial->deviceClose();
$serial->confBaudRate(2400);