Hi.
How could I exclude this ip and domain name?
$istat['wyklucz'] = 'http://5.33.98.80, miscsite.com*';
If I'm running a stat program and I wanted the program to stop if the referrer was 5.33.98.80 or miscsite.com.
My problem is I can exclude them if the word is exactly what I have displayed above but if you add a www to the url or anything to the end it won't exclude it.
Is there a way to add a wild card?
if($istat['wyklucz'] == 'miscsite.com' || 'http://5.33.98.80*')
{
exit;
}
I tried a search for wild cards and couldn't find an example.
Thanks.
Dave.