paparanch Posted February 27, 2009 Share Posted February 27, 2009 good day gurus! i have this code which generate 8 random alphanumeric: srand(time()); $pool = array_merge( range('a', 'z'), range('A', 'Z'), range(0, 9) ); $pool_size = count($pool) - 1; for ($i = 0; $i < 8; $i++) { $code = $pool[rand(0, $pool_size)]; <<<<< i want to get its value outside the for statement } how could i get the value of the variable $code outside the for statement? because when i tried to echo the varibale after the for statement only the last digit of 8 alphanumeric will appear... plss help.. Quote Link to comment https://forums.phpfreaks.com/topic/147107-solved-getting-value-of-variable-from-for-statement/ Share on other sites More sharing options...
phpdragon Posted February 27, 2009 Share Posted February 27, 2009 that means your $code is echoing outside the for loop, but your calculation for getting the variables is wrong, if it was not echoing the variable then the result would have no date shown, as you are getting something indicates you previous code to get the value has an error Quote Link to comment https://forums.phpfreaks.com/topic/147107-solved-getting-value-of-variable-from-for-statement/#findComment-772340 Share on other sites More sharing options...
paparanch Posted February 27, 2009 Author Share Posted February 27, 2009 hi mr.phpdragon! i really dont get what you mean (im just noob in php). this code works very fine: for ($i = 0; $i < 8; $i++) { $code = $pool[rand(0, $pool_size)]; echo $code; <<<(output "65KbldxB") } but when i echo outside the for statement i only get the last digit: for ($i = 0; $i < 8; $i++) { $code = $pool[rand(0, $pool_size)]; } echo $code; <<<(output "B") Quote Link to comment https://forums.phpfreaks.com/topic/147107-solved-getting-value-of-variable-from-for-statement/#findComment-772344 Share on other sites More sharing options...
trq Posted February 27, 2009 Share Posted February 27, 2009 but when i echo outside the for statement i only get the last digit: Of course you do, because that is the last value stored within $code. Either echo it within the loop, or have each value concatinated onto the end of $code. eg; for ($i = 0; $i < 8; $i++) { $code .= $pool[rand(0, $pool_size)]; } echo $code; Quote Link to comment https://forums.phpfreaks.com/topic/147107-solved-getting-value-of-variable-from-for-statement/#findComment-772353 Share on other sites More sharing options...
paparanch Posted February 28, 2009 Author Share Posted February 28, 2009 wow! solved! thnx mr.thorpe! Quote Link to comment https://forums.phpfreaks.com/topic/147107-solved-getting-value-of-variable-from-for-statement/#findComment-773022 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.