sub Get_Banner_Rotator { my ($row, $dbh, $sth, $html_content); $sth = $dbh->prepare (qq{ SELECT * FROM Banner_Rotator ORDER BY RAND() LIMIT 1 }); $sth->execute(); $row = $sth->fetchrow_hashref(); if (defined($row) && $row ne "") { $html_content = qq~Print the link and image~; } $html_content =~ s/{{imageurl}}/$imageurl/g; return($html_content); } #### "SELECT id FROM table WHERE u = '1' ORDER BY RAND() LIMIT 1"