Hi all,
I need to trigger an event based on the content of a field. i.e
if content of a field is != to "1" show layer.
This is what I have so far.
<?php if ($row_owners['status'] =="1")
echo $row_owners['member_id'];
else
echo "PIN is inactive,<br />
contact PIN support"; ?>
<?php if ($row_owners['status'] !="1")
"MM_showHideLayers('Layer1','','show')"
;?>
<?php if (empty($row_owners['member_id']))
echo "PIN not registered<br />
or inactive";
?>
I have been playing with this for hours, can anyone point me in the right direction.