Guest User

Untitled

a guest
Jan 16th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. if($value <= 100000) {
  2. $weight = mt_rand(90, 110);
  3. $update_array = array(
  4. "weight" => $weight
  5. );
  6. } elseif($value >= 201000 && $value <= 250000) {
  7. $weight = mt_rand(60, 89);
  8. $update_array = array(
  9. "weight" => $weight
  10. );
  11. }
Add Comment
Please, Sign In to add comment