Is there any way to change the way a value is seen, like if I have a 0 and I want to display NO whereever there is a 0.
are you pulling out of a datbase? which database?
Basically pull out of your database then run an if statement
if($row["field_name"] == "0") { echo "NO"; } else { echo $row["field_name"]; }
Cgraz