I have to set $vote to one of these
t112u t113u t212u t213o
how can i do this and make it random??
$array = array ('t112u', 't113u', 't212u', 't213o'); $random = $array[array_rand ($array)]; echo $random;
That might work. 😃