Quote:
|
Originally Posted by lordmerlin
Hi
The problem I have is, the device can take any number of readings, and the operators doesn't always take the same amount of readings.
|
Your device ?i
if you create table
id
numberofreading
file
...
you used code :
<?PHP
$str = SELECT numberofreading
FROM yourtable
WHERE file="Name_file";
$res=mysql_query($str) or die("");
echo "number of readings " ;
echo $rec
?>
--- bye---