I have some bootstrap button on page.html:
<button type="button" class="btn">Basic</button>
And some PHP script script.php.
Is there are any way to combine them, so then user clicks button, script executes and passes the result back to page.html?
I've tried to google this question - but there are advises to do it with Ajax. But I want to keep the code as simple as possible.
<a href="script.php" class="btn">Basic</a>html, as I understand. Any way to link it with bootstrap button?