it looks like the variable $cell1 is somehow being unset, and the echoed text will dissapear! Any help is appreciated.
if (isset($var1)){
$cell1 = "yes";
}
if (isset($cell1)){
echo "this will dissapear...";
}
if (isset($var2)){
$cell2 = "yes";
}
if (isset($cell2)){
echo "when this appears!";
}