PHP javascript den değişken göndermek için yardıma ihtiyacım var

0 Cevap php

i try to send some data from html to process page. i want to do this use javascript. the javascript is:

     $('#search').click(function(){
             var param = serialize({
                        action:"searchmodelqp",
                        jhead:"aaData",
                        month:$("#search_month").val(),
                        year:$("#search_year").val(),
                        export:"excel"
                        });
$('#link2excel' ).replaceWith("<div id='link2excel'><a href='shows_merchan.php?" + param + "'  target='_blank'>Export result as Excel file</a></div>");
            });

ve ben bu adrese gönderiniz:

if(getVar('export')=='excel'){
                $expexcel = 'excel';
                } else {
                $expexcel=0;
}
switch(getVar('action')){
           case 'searchmodelqp':                             
                   modelqp(getVar('jhead'),getVar('month'),getVar('year'),getVar('export'));
                   break;
           }

function modelqp($jsonhead,$month, $year,$export){
                $Month = mysql_real_escape_string($month);
                $Year = mysql_real_escape_string($year);
                switch($jsonhead){
                        case 'aaData':
                                //i put mysql query here
                        break;
                        }

if($export==0) {
          //do something
} else {
        //do something
}

nasıl i açık? bu (script şey yapmak) için ben hiçbir sonuç yok çünkü yapmak için yaparsınız.

0 Cevap