-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.php
More file actions
81 lines (71 loc) · 5.86 KB
/
privacy.php
File metadata and controls
81 lines (71 loc) · 5.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
// privacy.php
?>
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://5gvci.com/act/files/tag.min.js?z=10681000" data-cfasync="false" async></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy | SQL Playground</title>
<!-- Ad Script -->
<link rel="icon" type="image/png" href="assets/logo.png">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>body { background-color: #0a0f1a; color: #fff; font-family: 'Space Grotesk', sans-serif; }</style>
<script src="https://5gvci.com/act/files/tag.min.js?z=10681000" data-cfasync="false" async></script>
</head>
<body class="flex flex-col min-h-screen">
<nav class="border-b border-white/5 bg-black/20 backdrop-blur-sm">
<div class="max-w-4xl mx-auto px-6 h-16 flex items-center justify-between">
<a href="index.php" class="font-bold tracking-tight text-white">SQL<span class="text-cyan-400">Playground</span></a>
<a href="index.php" class="text-sm text-slate-400 hover:text-white">Home</a>
</div>
</nav>
<main class="flex-1 py-12 px-6">
<div class="max-w-3xl mx-auto prose prose-invert prose-lg">
<h1 class="text-4xl font-bold mb-8">Privacy Policy</h1>
<p class="text-slate-500 mb-8">Last Updated: January 14, 2026</p>
<p class="text-slate-400">
At sqlcompiler.shop, accessible from https://sqlcompiler.shop, one of our main priorities is the privacy of our visitors. This Privacy Policy document contains types of information that is collected and recorded by sqlcompiler.shop and how we use it.
</p>
<h2 class="text-2xl font-bold text-white mt-8 mb-4">1. Information We Collect</h2>
<p class="text-slate-400">
When you visit our website, we may collect certain information automatically, including your IP address, browser type, operating system, referring URLs, and interaction data. If you register an account, we collect your email address and username to manage your session and history.
</p>
<h2 class="text-2xl font-bold text-white mt-8 mb-4">2. Cookies and Web Beacons</h2>
<p class="text-slate-400">
Like any other website, sqlcompiler.shop uses "cookies". These cookies are used to store information including visitors' preferences, and the pages on the website that the visitor accessed or visited. The information is used to optimize the users' experience by customizing our web page content based on visitors' browser type and/or other information.
</p>
<h2 class="text-2xl font-bold text-white mt-8 mb-4">3. Google AdSense & DoubleClick DART Cookie</h2>
<p class="text-slate-400">
Google is one of a third-party vendor on our site. It also uses cookies, known as DART cookies, to serve ads to our site visitors based upon their visit to www.website.com and other sites on the internet. However, visitors may choose to decline the use of DART cookies by visiting the Google ad and content network Privacy Policy at the following URL – <a href="https://policies.google.com/technologies/ads" target="_blank" rel="noopener noreferrer" class="text-cyan-400">https://policies.google.com/technologies/ads</a>
</p>
<h2 class="text-2xl font-bold text-white mt-8 mb-4">4. Our Advertising Partners</h2>
<p class="text-slate-400">
Some of advertisers on our site may use cookies and web beacons. Our advertising partners are listed below. Each of our advertising partners has their own Privacy Policy for their policies on user data. For easier access, we hyperlinked to their Privacy Policies below.
<ul class="list-disc pl-5 mt-2">
<li>Google: <a href="https://policies.google.com/technologies/ads" target="_blank" rel="noopener noreferrer" class="text-cyan-400">https://policies.google.com/technologies/ads</a></li>
</ul>
</p>
<h2 class="text-2xl font-bold text-white mt-8 mb-4">5. Third Party Privacy Policies</h2>
<p class="text-slate-400">
sqlcompiler.shop's Privacy Policy does not apply to other advertisers or websites. Thus, we are advising you to consult the respective Privacy Policies of these third-party ad servers for more detailed information. It may include their practices and instructions about how to opt-out of certain options.
</p>
<h2 class="text-2xl font-bold text-white mt-8 mb-4">6. Data Storage & Security</h2>
<p class="text-slate-400">
We implement appropriate security measures to protect against unauthorized access, alteration, disclosure, or destruction of your personal data.
<strong>Important:</strong> We do not permanently store queries or database schemas for unregistered users. For registered users, data is stored securely but we recommend against storing sensitive personal identification information (PII) in your practice databases.
</p>
<h2 class="text-2xl font-bold text-white mt-8 mb-4">7. Children's Information</h2>
<p class="text-slate-400">
Another part of our priority is adding protection for children while using the internet. We encourage parents and guardians to observe, participate in, and/or monitor and guide their online activity. sqlcompiler.shop does not knowingly collect any Personal Identifiable Information from children under the age of 13.
</p>
</div>
</main>
<!-- Footer -->
<footer class="py-8 border-t border-white/5 text-center text-slate-600 text-sm">
© <?= date('Y') ?> SQL Playground.
</footer>
</body>
</html>