Re: More info about the rand() function ?
Calling rand() 100000 times will use a fair bit of CPU.
In php, the syntax for rand() is:
rand((int) min, (int) max);
So if I put rand(0,10) there should be a 1/11 chance that it will be 0, and a 1/11 chance that it will be 10.
Also, the server your site is hosted on is down -.- (absolut?).
Also, the close thread button is located by clicking edit on your post, clicking 'Go Advanced', then it will be below the textarea. (Edit - Or at the very top of the page.)
Last edited by scopey; 09-12-2008 at 05:53 AM.
- When in doubt, refer to the PHP manual.