Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <p>
- <?php
- // Create an array and push on the names
- // of your closest family and friends
- $family = array("agus", "tina", "supri" ,"sena");
- // Sort the list
- array_push($family, "agus", "tina", "supri" ,"sena");
- sort ($family);
- // Randomly select a winner!
- $fam = count($family);
- $him = rand(0, $fam -1);
- // Print the winner's name in ALL CAPS
- $winner = $family[$him];
- echo strtoupper($winner);
- ?>
- </p>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement