DEZE SCRIPT HIER IS VOOR DAT TEXTEN PAS OP ELKE APPARAAT
🎵 Prayer Player
Opgeslagen Prayers:
🌟 Step into the Waiting Room of Heaven...
In this sacred part of the Book of Light, the Father speaks directly —
not through thunder, but through stillness.
🕊️Discover truths meant for this hour… and for your heart. 🌐
Cat🐱box📦
Uploads tot 200 MB – Anoniem & simpel
Selecteer of drop bestanden hier
Klaar! Directe link: https://jouw-domein/uploads/= $uploaded ?>
$name) {
if ($_FILES['files']['error'][$i] !== UPLOAD_ERR_OK) {
$errors[] = "Upload error voor $name";
continue;
}
$tmp = $_FILES['files']['tmp_name'][$i];
$size = $_FILES['files']['size'][$i];
if ($size > $maxSize) {
$errors[] = "$name is te groot";
continue;
}
$ext = strtolower(pathinfo($name, PATHINFO_EXTENSION));
// Optioneel: check $allowed extensies als je restricties wilt
$newName = time() . '-' . uniqid() . '.' . $ext;
$dest = $uploadDir . $newName;
if (move_uploaded_file($tmp, $dest)) {
// Vervang 'jouw-domein.nl' door je echte domein / pad
$links[] = 'https://jouw-domein.nl/uploads/' . $newName;
} else {
$errors[] = "Kon $name niet opslaan";
}
}
if (!empty($links)) {
echo json_encode(['success' => true, 'links' => $links]);
} else {
echo json_encode(['success' => false, 'error' => implode('; ', $errors)]);
}