11-17-2008, 04:03 PM
|
#4 (permalink)
|
|
The Acquainted
Join Date: May 2008
Location: Québec
Posts: 104
Thanks: 10
|
There we are !
PHP Code:
function drawList($list) { $thelist = ''; foreach($list as $file=>$string) { $lines = nl2br($string); $thelist .= ''; $thelist .= ''; $thelist .= ''.$file.''; $thelist .= ''; $thelist .= ''; $lines=explode("\n",$lines); $count=0; $color[0] = "#cccccc"; $color[1] = "#ffffff"; foreach($lines as $key=>$line) { $lines[$key]="{$line}"; $count=(++$count & 1); } $lines=implode(' ',$lines); $thelist .= $lines.' '; $thelist .= ''; $thelist .= ''; $thelist .= ' '; } return $thelist; }
__________________
That's why we are not alone on earth... let's build !
|
|
|
|