WAP to create a list of our closest family and friends and have a lottery. We will spin the wheel and randomly select one of our family and friends from the list
PHP functions used
Array()
count()
rand()
strtoupper()
<?php
$family=array();
array_push($family,"Rahul");
array_push($family,"Rahul1");
array_push($family,"Rahul2");
array_push($family,"Rahul3");
array_push($family,"Rahul4");
array_push($family,"Rahul5");
$count=count($family)-1;
$R=rand(0, $count);
Print strtoupper($family[$R]);
?>
If you know some other method feel free to share in comments.
0 comments :
Post a Comment