Hi Guys,
Is there a way I can grab the hard drive number (or some other unique computer ID number) via PHP?
Graham.
Short answer: No.
no, how ever you could try setting a cookie with an md5 hash of there ip address or timestamp if you just need to rememeber your users,
hi,
you can use timestamp , but it is always suggestable to use microtime
<?php
$mtime=microtime();
$arrmtime=explode(" ",$mtime);
$no=$arrmtime[0].$arrmtime[1];
?>
regards, bvsureshbabu