PHPRunner 6.1
I'm trying to hide a row on a tables print page. I named the row name "comment" and I check it.
in Print page: After record processed:
if ($row["name"]="comment")
{
echo $row=["name"];
//$row["grid_row"]=false;
}
comment is echoed back... so I know it's finding it. But when I try to make the row to not display using either $row or record etc. I can't seem to make it disappear.
I had to create a view of a master and detail. I've have where $value ="" for each comment not to repeat, yet what I really want to do is make the whole row not display at all.
Any direction would be helpful.