** <% next if ($EVENT->{details}->{title} =~ /text here/); %> **
** So that would not show events in my SSI with anything that would have the "text here" part. But I'm looking to do the exact opposite. **
You can try
<% next unless ($EVENT->{details}->{title} =~ /text here/); %>
or
<% next if ($EVENT->{details}->{title} !~ /text here/); %>
(note the !~ in place of =~)
Both should do the same thing.
Dan O.
[This message has been edited by DanO (edited August 15, 2003).]