💬 Ajoute les catégories et des nouveaux textes

This commit is contained in:
2019-09-19 17:17:57 +02:00
parent 983e025f5f
commit e678b9e4c3
5 changed files with 319 additions and 145 deletions

View File

@@ -1,7 +1,12 @@
<?php
$slug = $_POST['slug'];
$emails_json = json_decode(file_get_contents(__DIR__.'/emails.json'), true);
$topic = $_POST['topic'];
$emails_json = json_decode(file_get_contents(__DIR__.'/emails.json'), true)[0];
if (!array_key_exists($topic, $emails_json)) {
header('HTTP/1.0 404 Not Found');
}
$emails_json = $emails_json[$topic];
$emails = [];
foreach ($emails_json as $email) {
$emails[$email['slug']] = $email;