将javascript变量转换为php变量

时间:2015-06-23 11:06:06

标签: javascript php

我正在尝试在javascript中使用此代码中的全局变量:

function myFunction(X) 
            {
                    index = X.selectedIndex ;
                    alert(X.options[index].value) ;

            }

到同一项目中的另一个文件,但在php:

function Trier(){

    $eleve = new Eleve();
    $matiere = new Matiere();
    $examen = new Examen();

    if($_GET['classe'] == "Tous" && $_GET['exam'] == "Aucun"){
        listEleveGlobal();  
}

最后的目标是用变量“$_GET['classe']”替换y 认为!

0 个答案:

没有答案