我有一个 Web 表单,它在 3 个拆分文本框中保存了一个部件号。我想将此零件号作为零件号的 id 号保存到数据库中。有什么方法可以将数字连接起来,然后与 id 值进行比较并在插入语句中使用?我在某处读到你可以使用内爆函数来做到这一点。好吧,我确实使用内爆来存储日期,但到目前为止,关于这个问题,它没有帮助。
<td onmouseover="document.getElementById(\'id_nr_1\').focus();">
Stücklistennummer'.$pflicht_id_nr.'
</td>
<td align="left" onmouseover="document.getElementById(\'id_nr_1\').focus();">
<input type="text" class="'.$html_klasse_id_nr_1.'" id="id_nr_1" name="id_nr_1" size="2" maxlength="4" value="'.htmlspecialchars($_REQUEST["id_nr_1"]).'" onfocus="this.focus();" onkeyup="FocusWeiter(this.id, \'id_nr_2\');">
<input type="text" class="'.$html_klasse_id_nr_2.'" id="id_nr_2" name="id_nr_2" size="1" maxlength="3" value="'.htmlspecialchars($_REQUEST["id_nr_2"]).'" onfocus="this.focus();" onkeyup="FocusWeiter(this.id, \'id_nr_3\');">
<input type="text" class="'.$html_klasse_id_nr_3.'" id="id_nr_3" name="id_nr_3" size="1" maxlength="3" value="'.htmlspecialchars($_REQUEST["id_nr_3"]).'" onfocus="this.focus();" onkeyup="FocusWeiter(this.id, \'id_nr_4\');">
</td>
</tr>