jepp ist da auf jedenfall empfehlenswerter als das mysql_num_rows, da es um einiges schneller geht ....
greetz
iglo
greetz
iglo
$re0 = mysql_query("SELECT MIN(id) AS f,MAX(id) AS l FROM kunstwerke LIMIT 1");
while($ro0 = mysql_fetch_array($re0))
{
$first = $ro0[f];
$last = $ro0[l];
}
srand ((double)microtime()*1000000);
$randval = rand($first,$last);
$res = mysql_query("SELECT id, bild_k FROM kunstwerke WHERE id='$randval' ORDER BY id LIMIT 1");
$num = mysql_num_rows($res);
if($num == 1)
{
while($row = mysql_fetch_array($res))
{
$img = "$row[bild_k]";
$id = "$row[id]";
}
}
else
{
$img = "/img/bild_k/dontknow.gif";
}
Comment