I found things like: srand((float) microtime() * 10000000); srand(microtime()*time()); In my script... I don't understand what they are for. No variable uses them, they are just there like that. What do you think?
this srand function Seeds the random number generator with seed here seed is (float) microtime() * 10000000 and microtime()*time() srand is used prior to calling rand function so what srand does is that so rand function can get more random no
Which would imply that the script you are using is written for a very old version of PHP and might need checking to ensure there are no bugs or other flaws.