JSを介していくつかのパラメーターをPHPに渡そうとすると、いくつかの問題が発生します。
状況は次のとおりです。
HTML:
<form id="numbtns" method="post" action="imphp.php">
<button id="1" onClick="pass(this.id)">1</button>
<button id="2" onClick="pass(this.id)">2</button>
<button id="3" onClick="pass(this.id)">3</button>
<button id="confirm" onClick="save()">submit</button>
</form>
JS:
pass(clicked_id) {
var btn = document.getElementById(clicked_id);
**// I have no idea what to do next to give the ids to the php file.**
}
save() {
**// I want function save() to collect the parameters from function pass(), and pass them to 'imphp.php' when submit button is clicked. I'm stuck here.**
}
PHP:
// connection part, let's skip it.
...
$num = $_POST['num'];
$query = sprintf("SELECT id, num FROM tb WHERE num = $num");
多分それはあなたにとって迅速で愚かな質問であることを私は知っています、しかし私はそれを何時間も理解することができません。だから...誰かが私を助けてくれますか、私はそれをとても感謝しています。
事前にThx。