在具有多个值的PHP函数中传递ID

时间:2015-03-19 07:56:48

标签: javascript php function

$id=$_GET['id']; // this result has values like `1,2,3..multiple`

我用它来传递PHP代码中的函数some($id);

In JS file: 
fucntion some(cid){
 // I have check it with alert(cid);
}

但这里只占用或保留一个值。为什么会这样?

请帮忙。我希望所有ids都是单值(即,假设有1,2,3,4,那么它们都应该在cid中。

2 个答案:

答案 0 :(得分:0)

希望你想这样:

<?php 
$id=$_GET['id'];
?> 

<script>
var cid = "<?php echo $id;?>"; //pass php value in js
fucntion some(cid){
 // I have check it with alert(cid);
}
some(cid); //calling 
</script>

答案 1 :(得分:0)

如果我说得对,你请求中有多个id parms(复选框?)。尝试命名的表单输入不是id,而是id[]$_GET["id"]应该给你一个数组。