Try this instead?
$bob=$var_list[$i];
echo "
<tr>
<td align=\"left\" rowspan =\"1\" colspan =\"3\">
<blockquote>
<INPUT TYPE=\"checkbox\" NAME=\"$bob\" VALUE=\"Yes\" ".(($$bob)?'CHECKED':'').">", $bob;
echo "</blockquote>
</td>
</tr>";
}
The part to note is this:
".(($$bob)?'CHECKED':'')."
Thats:
doublequote . (($$bob)? singlequote CHECKED singlequote : singlequote singlequote ) . doublequote
Simply put, it says "if the value of $bob as a variable exists, then lets put in the word CHECKED, otherwise, nothing". A checkbox variable either has a value in it, or it doesnt, so this action is good for checkboxes. Try it out.