In my database I have 44,55,66,1,365
I want to explode this and show each one on it's own row...
How can I do this with this code?
echo '<div align="center">
<table border="0" width="95%" cellspacing="1">';
$user = $HTTP_COOKIE_VARS['RLNZ'];
$result = mysql_query ("SELECT * From members where user = $username");
$row = mysql_fetch_array($result);
$respected = explode(',', $row[respect]);
echo '<tr><td>';
echo $respected;
echo '</td></tr>';
echo '</table></div>';