JQUERY Post& Php会议

时间:2014-06-04 18:57:15

标签: php jquery

我正在尝试使用此代码将使用jquery $.post$.get函数的html下拉框选定值添加或发布到PHP $_SESSION变量中

<script type="text/javascript">
    $(document).ready(function(){
        $("#bid").change(function(){
            var bid=$("#bid").val();
        $.get('pget.php',{bid: bid}); }); })
</script> 

在jquery将'bid'值发送到'pget.php'后,考虑将'bid'值传递给Php $_SESSION变量,没有值传递给Php $_SESSION变量pget.php文件中的代码

if(isset($_GET['bid'])){
$_SESSION['banchor']=$_GET['bid'];  } 

拜托,有人可以帮我解决这个问题吗?

0 个答案:

没有答案