[eluser]ferno[/eluser]
nope, i tried using 'RAND()' and RAND()
EDIT: I found the solution, the correct code is:
Code:
$this->db->select('artist,title,location')->from('songs')->orderby('RAND()')->limit(1);
$query = $this->db->get(); // the magic line :D
foreach ($query->result() as $row)
{
echo $row->artist;
echo $row->title;
echo $row->location;
}