package main import ( "fmt" "html/template" "log" "net/http" "strings" ) func sayhelloName(w http.ResponseWriter, r *http.Request) { r.ParseForm() // analizuj argumenty, musisz to sam wywołać fmt.Println(r.Form) // drukuj informacje formularzy po stronie serwera fmt.Println("path", r.URL.Path) fmt.Println("scheme", r.URL.Scheme) fmt.Println(r.Form["url_long"]) for k, v := range r.Form { fmt.Println("key:", k) fmt.Println("val:", strings.Join(v, "")) } fmt.Fprintf(w, "Cześć!") // wyślij dane na strone } func main() { http.HandleFunc("/", sayhelloName) // ustaw router err := http.ListenAndServe(":8080", nil) // ustaw port nasłuchiwania if err != nil { log.Fatal("ListenAndServe: ", err) } }