Posted by Russ
2016-09-11

Hi Tom,

Thanks for the super-speedy response on my url question below. It works perfectly. The only problem with it is that a user can overtype the search value and then access records I don't want them to see.

Is there a way of making the field you have forced a value into via the url unable to be edited. i.e. the search value is specified via the url in to, say, a field called "district" and then that search value can't be changed by the user?
Posted by Tom
2016-09-12

>he only problem with it is that a user can overtype the search value

How about hiding it with "display:none" like this?
<div style='display:none;'>
.............................
.............................
.............................
.............................
</div>
If you want to hide the district input box, use can wrap it with "display:none", for example,
<div style='display:none;'>
<?php echo $hm->Zb( 'sp:def:district' ); ?>
</div>