我必须把 2 个 id-s 放在一起,$_POST
然后我想炸掉它们,例如:
我的 id-s 是 38 和 310。我在我的 html 文件中将 id-s 设置为这个 id = "38.310"。
在$_POST
我想爆炸 id-s 之后:
$id=$_POST['id'];
echo($id); // Gives 38.31
$new_id = explode(".", $id);
echo($new_id[0]); // Gives 38
echo($new_id[1]); // Gives 31
让这些 id-s 不四舍五入的方法是什么?
我需要38
和310
!id310
也可以1003000
...
编辑:
function dostuff(document, message, id, action) {
var eingabe;
eingabe = confirm(message);
if (eingabe === true) {
document.msgform.action.value = action;
document.msgform.id.value = id;
document.msgform.submit();
} else {
return true;
}
return false;
}
关联
<a href="#" onclick="dostuff(document, 'MESSAGE',<?php echo($row['vID']);?>.<?php echo($row['id']);?>,'FITTER_fitter_repaired');" class="button small red" >ACTION</a>
$row['vID'] = 38
$行['ID'] = 310
我的提交看起来像这样
<form enctype="multipart/form-data" name="msgform" action="" method="post">
<input type="hidden" value="" name="action"/>
<input type="hidden" value="" name="id"/>
</form>