Skip to content

Instantly share code, notes, and snippets.

@cacheleocode
Created November 27, 2012 01:22
Show Gist options
  • Save cacheleocode/4151793 to your computer and use it in GitHub Desktop.
Save cacheleocode/4151793 to your computer and use it in GitHub Desktop.
array of arrays accessed randomly
<?php
$arrangements = array(
array(1,2),
array(1,3),
array(2,3),
array(3,1),
array(3,2)
);
$max = count($arrangements) - 1;
foreach ($arrangements[mt_rand(0,$max)] as $quote)
{
echo "<img src=\"quote" . $quote . ".png\" alt=\"\" style=\"display: none;\" />";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment