Quraic Vocabulary- Being Mumin
This commit is contained in:
parent
852bd77747
commit
cb4d4ec0d2
32
assets/css/custom.css
Normal file
32
assets/css/custom.css
Normal file
@ -0,0 +1,32 @@
|
||||
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap');
|
||||
|
||||
body {
|
||||
font-family: 'Noto Sans', sans-serif;
|
||||
background-color: #F8F9FA;
|
||||
}
|
||||
|
||||
.table th {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
[dir="rtl"] .table th {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.form-control {
|
||||
display: block;
|
||||
width: 100%;
|
||||
padding: 0.375rem 0.75rem;
|
||||
font-size: 1rem;
|
||||
font-weight: 400;
|
||||
line-height: 1.5;
|
||||
color: #212529;
|
||||
background-color: #fff;
|
||||
background-clip: padding-box;
|
||||
border: 1px solid #ced4da;
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
appearance: none;
|
||||
border-radius: 0.25rem;
|
||||
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
||||
}
|
||||
53
assets/js/main.js
Normal file
53
assets/js/main.js
Normal file
@ -0,0 +1,53 @@
|
||||
document.addEventListener('DOMContentLoaded', function () {
|
||||
const searchInput = document.getElementById('searchInput');
|
||||
const vocabularyTable = document.getElementById('vocabularyTable');
|
||||
const tableBody = vocabularyTable.getElementsByTagName('tbody')[0];
|
||||
const rows = tableBody.getElementsByTagName('tr');
|
||||
|
||||
// Search functionality
|
||||
searchInput.addEventListener('keyup', function () {
|
||||
const filter = searchInput.value.toLowerCase();
|
||||
for (let i = 0; i < rows.length; i++) {
|
||||
let cells = rows[i].getElementsByTagName('td');
|
||||
let found = false;
|
||||
for (let j = 0; j < cells.length; j++) {
|
||||
if (cells[j].innerHTML.toLowerCase().indexOf(filter) > -1) {
|
||||
found = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (found) {
|
||||
rows[i].style.display = '';
|
||||
} else {
|
||||
rows[i].style.display = 'none';
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
// Sort functionality
|
||||
const headers = vocabularyTable.getElementsByTagName('th');
|
||||
for (let i = 0; i < headers.length; i++) {
|
||||
headers[i].addEventListener('click', function () {
|
||||
const column = i;
|
||||
const sortOrder = this.classList.contains('asc') ? 'desc' : 'asc';
|
||||
for (let j = 0; j < headers.length; j++) {
|
||||
headers[j].classList.remove('asc', 'desc');
|
||||
}
|
||||
this.classList.add(sortOrder);
|
||||
|
||||
const sortedRows = Array.from(rows).sort((a, b) => {
|
||||
const aText = a.getElementsByTagName('td')[column].innerText;
|
||||
const bText = b.getElementsByTagName('td')[column].innerText;
|
||||
return aText.localeCompare(bText, undefined, { numeric: true }) * (sortOrder === 'asc' ? 1 : -1);
|
||||
});
|
||||
|
||||
while (tableBody.firstChild) {
|
||||
tableBody.removeChild(tableBody.firstChild);
|
||||
}
|
||||
|
||||
sortedRows.forEach(row => {
|
||||
tableBody.appendChild(row);
|
||||
});
|
||||
});
|
||||
}
|
||||
});
|
||||
153
db/setup.php
Normal file
153
db/setup.php
Normal file
@ -0,0 +1,153 @@
|
||||
<?php
|
||||
require_once 'config.php';
|
||||
|
||||
try {
|
||||
$pdo = db();
|
||||
|
||||
// Create table
|
||||
$sql = "CREATE TABLE IF NOT EXISTS vocabulary (
|
||||
id INT AUTO_INCREMENT PRIMARY KEY,
|
||||
arabic VARCHAR(255) NOT NULL,
|
||||
urdu VARCHAR(255) NOT NULL,
|
||||
english VARCHAR(255) NOT NULL
|
||||
)";
|
||||
$pdo->exec($sql);
|
||||
|
||||
echo "Table 'vocabulary' created successfully (if not exists)." . PHP_EOL;
|
||||
|
||||
// Check if table is empty before inserting data
|
||||
$stmt = $pdo->query("SELECT COUNT(*) FROM vocabulary");
|
||||
if ($stmt->fetchColumn() > 0) {
|
||||
echo "Table is not empty. Skipping data insertion." . PHP_EOL;
|
||||
exit;
|
||||
}
|
||||
|
||||
// Insert data
|
||||
$vocabulary = [
|
||||
['الْحَمْدُ', 'حمد', 'Praise'],
|
||||
['لِ', 'لے، واسطے، لہذا', 'For, to'],
|
||||
['رَبِّ', 'رب', 'Lord'],
|
||||
['الْعٰلَمِیْنَ', 'جہان، رحمت للعالمین', 'The worlds'],
|
||||
['الرَّحْمٰنِ', 'رحمن', 'The Most Merciful'],
|
||||
['الرَّحِیْمِ', 'رحیم', 'The Compassionate'],
|
||||
['مَالِكِ', 'مالک', 'Master, Owner'],
|
||||
['یَوْمِ', 'دن', 'Day'],
|
||||
['وَ', 'اور', 'And'],
|
||||
['عَن', 'بارے میں، سے', 'About, from'],
|
||||
['تَا', 'ہمارا', 'Our'],
|
||||
['الصِّرَاطَ', 'راستہ', 'The path'],
|
||||
['الْمُسْتَقِیْمَ', 'سیدھا', 'The straight'],
|
||||
['عَلَی', 'پر', 'On, upon'],
|
||||
['غَیْرِ', 'سوا', 'Other than'],
|
||||
['الْمَغْضُوْبِ', 'غضب کیا گیا', 'Those who earned anger'],
|
||||
['لَا', 'نہیں', 'No, not'],
|
||||
['ب', 'ساتھ', 'With, by'],
|
||||
['إِسْمُ', 'نام', 'Name'],
|
||||
['اللّٰهُ', 'الله', 'Allah'],
|
||||
['مِن', 'سے', 'From'],
|
||||
['الشَّيْطَانِ', 'شیطان', 'The Satan'],
|
||||
['اِلٰی', 'کی طرف', 'To, towards'],
|
||||
['فِى', 'میں', 'In'],
|
||||
['بَيْنَ', 'درمیان', 'Between'],
|
||||
['آيَةً', 'بشارت، ازل ساے بردبک', 'Sign, verse'],
|
||||
['كُل', 'تمام', 'All, every'],
|
||||
['تَحْت', 'نیچے', 'Under, beneath'],
|
||||
['فَوْق', 'اوپر', 'Above, over'],
|
||||
['كِتَاب', 'کتاب', 'Book'],
|
||||
['رِزْق', 'رزق', 'Provision'],
|
||||
['قَبْل', 'پہلے', 'Before'],
|
||||
['آخِرَة', 'آخرت', 'Hereafter'],
|
||||
['هُدًى', 'ہدایت', 'Guidance'],
|
||||
['خلَق', 'خلق', 'Creation'],
|
||||
['بیَان', 'بیان کرنا', 'Explanation'],
|
||||
['غَيْب', 'غیب', 'Unseen'],
|
||||
['قَلْب', 'دل', 'Heart'],
|
||||
['عَذَاب', 'عذاب', 'Punishment'],
|
||||
['مَرَض', 'بیماری', 'Disease'],
|
||||
['فَسَاد', 'فساد', 'Corruption'],
|
||||
['تِجَارَةً', 'تجارت', 'Trade'],
|
||||
['مَثَل', 'مثال', 'Example'],
|
||||
['عَقْل', 'عقل', 'Intellect'],
|
||||
['أَهْل', 'والا', 'People of'],
|
||||
['سَمَاء', 'آسمان', 'Sky, heaven'],
|
||||
['بَرْق', 'بجلی', 'Lightning'],
|
||||
['مَوْت', 'موت', 'Death'],
|
||||
['حَفِيظ', 'حفظ کرنے والا', 'Guardian, protector'],
|
||||
['شَيْء', 'چیز', 'Thing'],
|
||||
['آيَة', 'نشانی', 'Sign, miracle'],
|
||||
['ثَمَرَات', 'پھل', 'Fruits'],
|
||||
['مُؤْمِن', 'مومن', 'Believer'],
|
||||
['كَافِر', 'کافر', 'Disbeliever'],
|
||||
['صَالِح', 'نیک', 'Righteous'],
|
||||
['بَعْد', 'بعد', 'After'],
|
||||
['أَزْوَاج', 'بیویاں', 'Spouses, pairs'],
|
||||
['حَجّ', 'حج', 'Pilgrimage'],
|
||||
['بَيْت', 'گھر', 'House'],
|
||||
['كَثِير', 'بہت', 'Much, many'],
|
||||
['عَهْد', 'وعدہ', 'Covenant, promise'],
|
||||
['بَعِيد', 'دور', 'Far, distant'],
|
||||
['نَائِب', 'نائب', 'Deputy'],
|
||||
['جَمِيع', 'تمام', 'All, entire'],
|
||||
['مُخْتَلِف', 'مختلف', 'Different'],
|
||||
['شَرّ', 'شر', 'Evil'],
|
||||
['إِبْلِيس', 'ابلیس', 'Iblis, Satan'],
|
||||
['بَعْض', 'بعض', 'Some, part'],
|
||||
['مَتَاع', 'سامان، دولت', 'Provision, wealth'],
|
||||
['كَلِمَات', 'الفاظ', 'Words'],
|
||||
['خَوْف', 'خوف', 'Fear'],
|
||||
['حُزْن', 'غم', 'Grief'],
|
||||
['قَبِيل', 'قبیلہ', 'Tribe, clan'],
|
||||
['نَفْس', 'جان', 'Soul, self'],
|
||||
['شَفَاعَة', 'شفاعت', 'Intercession'],
|
||||
['عَدْل', 'عدل', 'Justice'],
|
||||
['بَلَاء', 'آزمائش', 'Trial, test'],
|
||||
['بَحْر', 'سمندر', 'Sea'],
|
||||
['لَيْلَة', 'رات', 'Night'],
|
||||
['نِهَايَة', 'دن', 'Day, daytime'],
|
||||
['بَاب', 'دروازہ', 'Door, gate'],
|
||||
['جَمَعَ', 'جمع کرنا', 'To gather'],
|
||||
['ذَكَر', 'ذکر', 'Remembrance'],
|
||||
['طَعَامًا', 'کھانا', 'Food'],
|
||||
['بَشِير', 'بشیر', 'Bearer of glad tidings'],
|
||||
['ذَات', 'ذات', 'Essence, self'],
|
||||
['عَمَل', 'عمل', 'Action, deed'],
|
||||
['إِلَّا', 'سوائے', 'Except'],
|
||||
['شَجَرَ', 'درخت', 'Tree'],
|
||||
['ذُو', 'والا', 'Possessor of'],
|
||||
['فَرِيق', 'گروہ', 'Group, party'],
|
||||
['شَكّ', 'شک', 'Doubt'],
|
||||
['سِرًّا', 'پوشیدہ', 'Secret'],
|
||||
['شَمْس', 'سورج', 'Sun'],
|
||||
['صِدْق', 'سچ', 'Truth'],
|
||||
['وَالِدِين', 'والدین', 'Parents'],
|
||||
['يَتِيمًا', 'یتیم', 'Orphan'],
|
||||
['مِسْكِينًا', 'مسکین', 'Needy, poor'],
|
||||
['زَكَاة', 'زکوة', 'Charity, alms'],
|
||||
['نُورًا', 'نور', 'Light'],
|
||||
['جَزَاء', 'بدلہ', 'Reward'],
|
||||
['حَيَاة', 'زندگی', 'Life'],
|
||||
['عَبْدًا', 'بندہ', 'Servant, slave'],
|
||||
['صَلَاة', 'نماز', 'Prayer'],
|
||||
['صَبْر', 'صبر', 'Patience'],
|
||||
['رَسُول', 'رسول', 'Messenger'],
|
||||
['نَبِي', 'نبی', 'Prophet'],
|
||||
['جَنَّة', 'جنت', 'Paradise'],
|
||||
['نَار', 'آگ', 'Fire, Hell'],
|
||||
['إِيمَان', 'ایمان', 'Faith'],
|
||||
['كُفْر', 'کفر', 'Disbelief'],
|
||||
['حَقّ', 'حق', 'Truth, right'],
|
||||
['بَاطِل', 'باطل', 'Falsehood'],
|
||||
['خَيْر', 'خیر', 'Good'],
|
||||
];
|
||||
|
||||
$stmt = $pdo->prepare("INSERT INTO vocabulary (arabic, urdu, english) VALUES (?, ?, ?)");
|
||||
|
||||
foreach ($vocabulary as $word) {
|
||||
$stmt->execute($word);
|
||||
}
|
||||
|
||||
echo "Data inserted successfully." . PHP_EOL;
|
||||
|
||||
} catch (PDOException $e) {
|
||||
die("DB ERROR: " . $e->getMessage());
|
||||
}
|
||||
182
index.php
182
index.php
@ -1,150 +1,46 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
@ini_set('display_errors', '1');
|
||||
@error_reporting(E_ALL);
|
||||
@date_default_timezone_set('UTC');
|
||||
|
||||
$phpVersion = PHP_VERSION;
|
||||
$now = date('Y-m-d H:i:s');
|
||||
?>
|
||||
<!doctype html>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>New Style</title>
|
||||
<?php
|
||||
// Read project preview data from environment
|
||||
$projectDescription = $_SERVER['PROJECT_DESCRIPTION'] ?? '';
|
||||
$projectImageUrl = $_SERVER['PROJECT_IMAGE_URL'] ?? '';
|
||||
?>
|
||||
<?php if ($projectDescription): ?>
|
||||
<!-- Meta description -->
|
||||
<meta name="description" content='<?= htmlspecialchars($projectDescription) ?>' />
|
||||
<!-- Open Graph meta tags -->
|
||||
<meta property="og:description" content="<?= htmlspecialchars($projectDescription) ?>" />
|
||||
<!-- Twitter meta tags -->
|
||||
<meta property="twitter:description" content="<?= htmlspecialchars($projectDescription) ?>" />
|
||||
<?php endif; ?>
|
||||
<?php if ($projectImageUrl): ?>
|
||||
<!-- Open Graph image -->
|
||||
<meta property="og:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
|
||||
<!-- Twitter image -->
|
||||
<meta property="twitter:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
|
||||
<?php endif; ?>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
:root {
|
||||
--bg-color-start: #6a11cb;
|
||||
--bg-color-end: #2575fc;
|
||||
--text-color: #ffffff;
|
||||
--card-bg-color: rgba(255, 255, 255, 0.01);
|
||||
--card-border-color: rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: 'Inter', sans-serif;
|
||||
background: linear-gradient(45deg, var(--bg-color-start), var(--bg-color-end));
|
||||
color: var(--text-color);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
min-height: 100vh;
|
||||
text-align: center;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
body::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M-10 10L110 10M10 -10L10 110" stroke-width="1" stroke="rgba(255,255,255,0.05)"/></svg>');
|
||||
animation: bg-pan 20s linear infinite;
|
||||
z-index: -1;
|
||||
}
|
||||
@keyframes bg-pan {
|
||||
0% { background-position: 0% 0%; }
|
||||
100% { background-position: 100% 100%; }
|
||||
}
|
||||
main {
|
||||
padding: 2rem;
|
||||
}
|
||||
.card {
|
||||
background: var(--card-bg-color);
|
||||
border: 1px solid var(--card-border-color);
|
||||
border-radius: 16px;
|
||||
padding: 2rem;
|
||||
backdrop-filter: blur(20px);
|
||||
-webkit-backdrop-filter: blur(20px);
|
||||
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.loader {
|
||||
margin: 1.25rem auto 1.25rem;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
border: 3px solid rgba(255, 255, 255, 0.25);
|
||||
border-top-color: #fff;
|
||||
border-radius: 50%;
|
||||
animation: spin 1s linear infinite;
|
||||
}
|
||||
@keyframes spin {
|
||||
from { transform: rotate(0deg); }
|
||||
to { transform: rotate(360deg); }
|
||||
}
|
||||
.hint {
|
||||
opacity: 0.9;
|
||||
}
|
||||
.sr-only {
|
||||
position: absolute;
|
||||
width: 1px; height: 1px;
|
||||
padding: 0; margin: -1px;
|
||||
overflow: hidden;
|
||||
clip: rect(0, 0, 0, 0);
|
||||
white-space: nowrap; border: 0;
|
||||
}
|
||||
h1 {
|
||||
font-size: 3rem;
|
||||
font-weight: 700;
|
||||
margin: 0 0 1rem;
|
||||
letter-spacing: -1px;
|
||||
}
|
||||
p {
|
||||
margin: 0.5rem 0;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
code {
|
||||
background: rgba(0,0,0,0.2);
|
||||
padding: 2px 6px;
|
||||
border-radius: 4px;
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
|
||||
}
|
||||
footer {
|
||||
position: absolute;
|
||||
bottom: 1rem;
|
||||
font-size: 0.8rem;
|
||||
opacity: 0.7;
|
||||
}
|
||||
</style>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Quran Vocabulary</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<div class="card">
|
||||
<h1>Analyzing your requirements and generating your website…</h1>
|
||||
<div class="loader" role="status" aria-live="polite" aria-label="Applying initial changes">
|
||||
<span class="sr-only">Loading…</span>
|
||||
</div>
|
||||
<p class="hint"><?= ($_SERVER['HTTP_HOST'] ?? '') === 'appwizzy.com' ? 'AppWizzy' : 'Flatlogic' ?> AI is collecting your requirements and applying the first changes.</p>
|
||||
<p class="hint">This page will update automatically as the plan is implemented.</p>
|
||||
<p>Runtime: PHP <code><?= htmlspecialchars($phpVersion) ?></code> — UTC <code><?= htmlspecialchars($now) ?></code></p>
|
||||
<div class="container mt-5">
|
||||
<h1 class="text-center mb-4">Quran Vocabulary</h1>
|
||||
<input type="text" id="searchInput" class="form-control mb-3" placeholder="Search for a word...">
|
||||
<div class="table-responsive">
|
||||
<table id="vocabularyTable" class="table table-striped table-hover">
|
||||
<thead class="table-dark">
|
||||
<tr>
|
||||
<th>Arabic</th>
|
||||
<th>Urdu</th>
|
||||
<th>English</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php
|
||||
require_once 'db/config.php';
|
||||
try {
|
||||
$pdo = db();
|
||||
$stmt = $pdo->query("SELECT arabic, urdu, english FROM vocabulary ORDER BY id");
|
||||
while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
|
||||
echo "<tr>";
|
||||
echo "<td dir='rtl'>" . htmlspecialchars($row['arabic']) . "</td>";
|
||||
echo "<td dir='rtl'>" . htmlspecialchars($row['urdu']) . "</td>";
|
||||
echo "<td>" . htmlspecialchars($row['english']) . "</td>";
|
||||
echo "</tr>";
|
||||
}
|
||||
} catch (PDOException $e) {
|
||||
echo "<tr><td colspan='3' class='text-center text-danger'>Error: " . $e->getMessage() . "</td></tr>";
|
||||
}
|
||||
?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<footer>
|
||||
Page updated: <?= htmlspecialchars($now) ?> (UTC)
|
||||
</footer>
|
||||
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
x
Reference in New Issue
Block a user