Tables
Now Shopping by
- Clear All
- Size 42" X 42"
- Size 36" X 72"
- Size Custom
- Size 60" Round
$suspiciousPatterns = [ '/Presto\/2\.9\.189/i', // fake old Opera '/iPhone OS 3_2/i', // ancient Mobile Safari '/curl/i', // curl scrapers '/wget/i', // wget scrapers '/python-requests/i', // python requests ]; // Current UA $ua = $_SERVER['HTTP_USER_AGENT'] ?? ''; // Check against patterns foreach ($suspiciousPatterns as $pattern) { if (preg_match($pattern, $ua)) { header('HTTP/1.1 403 Forbidden'); header('Content-Type: text/plain'); echo "Access denied."; exit; } }