Input on form field to redirect to dynamic URL

Hi, I have a form field on the front page of my site, which I want to redirect to a dynamically created URL based on the input in the form field.

E.g. my form field here:
image

I want to redirect to https://xxxxxxxxx.webflow.io/send?fk751=Matt , where “Matt” is the dynamically created part of the URL.

Any ideas?

Did someone find a solution for this problem ? :confused:

Anyone able to help with this? I’m trying to find a way to do this exact thing. I’ve been trying different things I’m finding online, but no joy.

Depends on what you’re trying to accomplish but that’s a basic GET request.

  • Set your form method to GET
  • Give your input field the Name you want to appear on the querystring
  • Set your Action to the path you’re wanting to submit to

You’re the best! Thank you so much. Just needed to see it in bullet points, I guess.