So this is really not a geeklog question, but rather a PHP coding question related to my geeklog site. I have a table build function that I want to mask or format some of the data. Line one builds the function that will format my data, line two needs to be executed. Any guidance on getting the $data_tmp function to execute - I consistently get convertkg(4.08233) as the data_val, it should be converted to 9 lbs.
Text Formatted Code
if ($head_arr[$j]['mask'] != '') {
$data_tmp = str_replace($data_nam,$data_val,$head_arr[$j]['mask']);
$data_val = "{$data_tmp}";
}
$retval .= "<td>" . $data_val . "</td>\n";