Dear Sir/Madam,
We have our uniqid("") works perfectly in our current Linux server. Each returns unique ID as we expected.
When we deploy the same code to Windows Server 2003, we found that the uniqid("") returns the same value.
I've searched some solution and it encourage me to use uniqid("", true) instead of uniqid("").
My question is, is there a simpler way says configure in php.ini instead of changing the coding to my entire system?
Or i should do something to my windows system time, or microtime to make the uniqid() behaves similar as Linux?