I decided to split the query... using the code below how can I get each row plus field result? (i.e. $line['m_pos'][0] or something like that. which would be fieldname and row result 1)
Code:
$bio = mysql_query("SELECT * FROM social_meminfo
WHERE m_id = '".mysql_real_escape_string($en['mm_id'])."'");
if (mysql_num_rows($bio) == 0) call404();
while ($line = mysql_fetch_assoc($bio)) {
foreach ($line as $key => $value) {
$en['b'.$key] = str_replace("\n",'<br/>',stripslashes($value));
}
echo '<pre>';
print_r($line);
echo '</pre>';
}