I'm presuming you're using the vBulletin backend in the following example.
PHP Code:
// cache data
$tabledata = $vbulletin->db->query_read("SELECT * FROM `coders`");
$tabledata = $vbulletin->db->fetch_array($tabledata);
// display rows
foreach ($tabledata AS $row)
{
echo '<a href="coder.php?show=' . $row['coderid'] . '">' . $row['codername'] . ' (' . $row['codercountry'] . ')</a>';
}