如何使用我的代码在Jquery变量中传递PHP变量

时间:2015-01-14 15:10:17

标签: php jquery variables random

我有一点问题,我希望从PHP页面到另一个页面获取我唯一生成的变量,但是在jquery中使用链接。 这是我的代码!

页面reg.php

<?php $randstring = "variable" ?>

page index.php

$("#subscribe_form").submit(function()
{

    //remove all the class add the messagebox classes and start fading
    $("#msgboxs").removeClass().addClass('messagebox').text('Validating....').fadeIn(1200);
    //alert ('Pass 1');
    $.post("a_subscribe.php",{ firstname:$('#firstname').val(),lastname:$('#lastname').val(),email:$('#email').val(),phone:$('#phone').val(),rand:Math.random() }, function(data)
    {

        var dataarray= data.split(',');

      if(dataarray[0]=='yes') //if correct login detail
      {

        $("#msgboxs").fadeTo(2000,1,function()  //start fading the messagebox
        { 

          //add message and change the class of the box and start fading
          $("#msgboxs").html('').removeClass()
          //$("#msgboxs").html(dataarray[1]).addClass('messageboxok')
          $("#artist-form").hide();
          $("#request-success").show();

这里我需要将变量用于window.open

我如何从上页$randstring

中提取变量
          window.open(url, "http://clubgtm.com/en/confirmemail?gt='.$randstring.'")

0 个答案:

没有答案