Hi Pablo, sorry but I am a bit new to this. In my code below, what code exactly would I replace the word HERE with to add the $ to the beginning of the string? For example, if the variable $cost is anything other than 0.00, say 1.25, then I want to add the $ to it, like, $1.25 - otherwise change it to N/A.
if ($myrow["cost"] != 0.00) {
$myrow["cost"] = HERE
}
else {
$myrow["cost"] = "N/A";
}
}