Hallo Andreas,
wie wäre es wenn du alle themen in ein array schreibst?
srand ((float) microtime() * 10000000);
$input = array ("Thema1", "Thema2", "Thema3");
$rand_keys = array_rand ($input, 2);
print $input[$rand_keys[0]]."\n";
print $input[$rand_keys[1]]."\n";
Das habe ich von http://www.php.net/manual/en/function.array-rand.php
Vielleicht hilft es ja...
gruss
luca