ok I get the data from the database:
$request3 = mysql_query("
SELECT b.ID_BOARD, b.name
FROM {$db_prefix}boards as b
WHERE (FIND_IN_SET($ID_MEMBER,b.notifies) != 0)") or database_error(__FILE__, __LINE__);
then I want to display it:
while ($row3 = mysql_fetch_assoc($request3))
{
($row3['name']);
echo '
<tr>
<td>
<font size="2">
<input type="checkbox" name="board-' . $row3['ID_BOARD'] . '" value="1" />
</font>
</td>';
if ($row['ID_MEMBER'] != -1)
{
}
else
echo '
<td>
<font size="2"><b><i><a href="' . $scripturl . '?board=' . $row3['ID_BOARD'] . '">' . $row3['name'] . '</a></i></b></font>
</td>
</tr>';
}
however the $name simply doesn't appear...any ideas? thanks.