• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

PHP foreach+sql querry

Kavvson

Gdy boli cie glowa wez
Joined
Jun 25, 2008
Messages
1,177
Reaction score
72
Location
Poland
How to extract the data from this function?

PHP:
function createCell($description, $value) {
 
   return '<li class="d3-color-blue"><p style="color:#6969FF;"><span class="value">+ '.$value.'</span>'.$description.'</p></li>';
}

function createRow($datar) {
 
    $html = '';
 
    foreach($datar as $key => $value) {
 
         $html .= createCell($key, $value);
    }
 
return $datar;
}

Really thanks. Can some1 fix it
 
Back
Top