This commit is contained in:
tanch0
2024-06-18 16:26:58 +05:45
parent 613dfd1834
commit 50b8768a34
68 changed files with 1540 additions and 657 deletions

View File

@ -32,5 +32,10 @@ Route::get('/contact',[WebsiteController::class,'showContact'])->name("contact")
Route::post('/sendEmail',[WebsiteController::class,'sendEmail'])->name("sendEmail");
Route::get('/phpinfo', function() {
phpinfo();
$inipath = php_ini_loaded_file();
if ($inipath) {
echo 'Loaded php.ini: ' . $inipath;
} else {
echo 'A php.ini file is not loaded';
}
});