Skip to content

Instantly share code, notes, and snippets.

@wilk
Created November 28, 2018 08:07
Show Gist options
  • Save wilk/37a8a067394c42b6521753888656f43b to your computer and use it in GitHub Desktop.
Save wilk/37a8a067394c42b6521753888656f43b to your computer and use it in GitHub Desktop.
fetch post qs
async function sendInterface(data) {
try {
await fetch(`your_page.php?data=${data}`, {method: "POST"})
} catch (err) {
console.error(err)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment