Sure. If I understand your question correctly, you want something like this:
[tt]
<?php
// connect to the database
$query = "SELECT * FROM table";
$result = mysql("database",$query);
$rows = mysql_num_rows($result); // find the number of rows
$rand = rand(0,$rows); // will generate a random number from 0 to the number of rows in your database
$query = "SELECT * FROM tablename WHERE id = $rand"; // assuming your auto-increment field is id. rename it to what you want in the code.
$result = mysql("database",$query);
$data = mysql_result($result,0,"field_that_you_want_to_get_data_from"

;
print $data;
?>
[/tt]
That should do it. It selects a random row from your database and prints it to the screen.
Hope this helps.
-Vic vic cherubini
vikter@epicsoftware.com
====
Knows: Perl, HTML, JavScript, C/C++, PHP, Flash, Director
====