Hi,
Please tell me what you think will happen if I run:
I know what SHOULD happen but I don't think it's working.PHP Code:function sesid()
{
for($i=0; $i++; $i<8)
{
$num = rand(1,9);
$sesid .= $num;
}
}
sesid();
Thanks.
Hi,
Please tell me what you think will happen if I run:
I know what SHOULD happen but I don't think it's working.PHP Code:function sesid()
{
for($i=0; $i++; $i<8)
{
$num = rand(1,9);
$sesid .= $num;
}
}
sesid();
Thanks.
Kind Regards,
Guy__________________
Since 2007. Unbelievable Uptime. Web hosting, resellers, master resellers, linux VPS, windows VPS, shoutcasts, at the lowest prices on the net.
Tech-Hosts.co.uk.
Cant see anything wrong with it. I ran it and i get a number between 1 and 9. so it works![]()
Back for a while![]()
PHP Code:function sesid( )
{
for( $i = 0; $i < 8; $i++ )
{
$num = rand( 1,9 );
$sesid .= $num;
}
return $sesid;
}
$id = sesid( );
Last edited by Invent; 31-08-2008 at 08:02 PM.
You're supposed to get an 8 digit number haha.
Works like a charm, thanks very much. +rep
Last edited by iUnknown; 31-08-2008 at 08:45 PM.
Kind Regards,
Guy__________________
Since 2007. Unbelievable Uptime. Web hosting, resellers, master resellers, linux VPS, windows VPS, shoutcasts, at the lowest prices on the net.
Tech-Hosts.co.uk.
If you're trying to get an eight digit number why not do-
rand( "10000000", "99999999" );
Lets set the stage on fire, and hollywood will be jealous.
That'd be the better method.If you're trying to get an eight digit number why not do-
rand( "10000000", "99999999" );
Kind Regards,
Guy__________________
Since 2007. Unbelievable Uptime. Web hosting, resellers, master resellers, linux VPS, windows VPS, shoutcasts, at the lowest prices on the net.
Tech-Hosts.co.uk.
For loops are a lot slower than Toms method. Your logic is... interesting.
How could this hapen to meeeeeeeeeeeeeee?lol.
Haha fine, I'll test it and use it.
works like a charmPHP Code:$id = rand( "10000000", "99999999" );
$sesid = $id;
would +rep Tom but gotta spread.
Last edited by iUnknown; 31-08-2008 at 10:56 PM.
Kind Regards,
Guy__________________
Since 2007. Unbelievable Uptime. Web hosting, resellers, master resellers, linux VPS, windows VPS, shoutcasts, at the lowest prices on the net.
Tech-Hosts.co.uk.
visit my internet web site on the internet
http://dong.engineer/
it is just videos by bill wurtz videos you have been warned
Want to hide these adverts? Register an account for free!