<?php

$dirPath=__DIR__.'/../storage/logs/brevo/'.date('Ymd'); 

if (!is_dir($dirPath)){
            mkdir($dirPath,0777,true);
        }
        file_put_contents($dirPath.'/'.microtime(true).'.log',"_GET\n".print_r($_GET,true));
       file_put_contents($dirPath.'/'.microtime(true).'.log',"_POST\n".print_r($_POST,true));
?>
