Change comment (from POST to GET)

This commit is contained in:
Zen 2020-07-23 17:38:11 +08:00 committed by GitHub
parent 18ad2e50cb
commit c0cd53ff67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,7 +63,7 @@ Route::add('/phpinfo', function() {
phpinfo();
});
// Post route example
// Get route example
Route::add('/contact-form', function() {
navi();
echo '<form method="post"><input type="text" name="test"><input type="submit" value="send"></form>';