changes
This commit is contained in:
@ -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';
|
||||
}
|
||||
});
|
Reference in New Issue
Block a user