我不得不從$_POST
放2 ID-S在一起的話,我想他們爆炸,例如:PHP⎼不要一輪數字
我的ID-S是38和310我所做的ID-S這個id =「38.310」在我的html文件中。
$_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
!的ID 310
可以是也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;
}
LINK
<a href="#" onclick="dostuff(document, 'MESSAGE',<?php echo($row['vID']);?>.<?php echo($row['id']);?>,'FITTER_fitter_repaired');" class="button small red" >ACTION</a>
$行[ '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>
您應該向您展示如何提交帖子值。提交前有一些投射。 – bitWorking
顯示javascript! – bitWorking
剛剛更新:D – bernte