oops my bad i had a stoopid error in my code up above... notice the new line
PHP Code:
$up_lines = explode(",",$up_lines);
the fixed code:
PHP Code:
$results = mysql_query("SELECT users FROM table");
while ($credits = mysql_fetch_array($results)) {
$up = explode("\n",$credits[users]); // seperate by newline
foreach $up as $up_lines
{
$up_lines = explode(",",$up_lines); // separate by ,
$up_author = $up_lines[0];
$up_email = $up_lines[1];
$up_date = $up_lines[2];
echo $up_author;
}
hope this works... sorry about the error
Bookmarks