Transfer Data from A Widget Search To A SEO Tool I am using my Site

Solution:

Several things to fix:

  1. The p parameter should be removed.
  2. The url parameter which is the URL of the website to be analysed is missing in your form.
  3. The submit button is outside the form, so it doesn’t do anything
  4. The output and ref parameters are missing. Since they are fixed they can just be hardcoded as hidden.

Here’s the complete code for the form.

<form method="get" action="https://itzfizz.com/seo-analyzer/">
  <input type="hidden" name="output" value="html"/>
  <input type="hidden" name="ref" value="https://itzfizz.com/seo-analyzer/"/>
  <input type="url" name="url" placeholder="https://www.yoursite.com" />
  <button type="submit">Analyze Website</button>
</form>