我正在使用 jquery 函数来调用这样的 getdata.php 文件 -
$("#tasks").load("getdata.php?choice=" + $("#projects").val());
getdata.php 将结果动态回显给被调用者。
<?php //getdata.php
global $user_id; //<--These variables are defined in the callee file
global $con;
$choice=$_GET['choice'];
$query="SELECT task_id,title from tasks where user_id=$user_id AND proj_id=$choice";
$result=mysqli_query($con,$query) or die(mysqli_error($con));
if((mysqli_num_rows($res))!=0)
{
while (list($task_id, $title) = mysqli_fetch_row($result))
{
echo "<option value=$task_id>$title</option>";
}
}
else
{
echo "<option>No current Tasks</option>";
} ?>
有什么方法可以从这里访问被调用文件中的变量。我尝试使用全局,就像包含文件的情况一样,但这在这里不起作用。