最近我正在学习单页应用程序,但是我遇到了一个问题,我正在处理的项目位于一个包含许多文件夹的文件夹中,php js是主文件夹一侧的文件夹,每个文件夹包含其文件类型,问题是,一个名为getmax.php
的php文件给了我最大的id,我想在名为max(id)
的js文件中使用这个module.js
,以便为新模块提供下一个id,module.js
应该将此id提供给另一个名为insert.php
的php文件,如果我手动设置id,module.js
和insert.php
之间的连接正常。但我无法弄清楚如何使用max(id)
文件中的getmax.php
。
注意:我最近注意到我使用的是MySQL而我应该使用mysqli
我稍后会修复它。
getmax.php
是:
<?php
// alle relevanten Tabellen abfragen und als json zurückgeben.
$json["status"] = "running";
$details[] = "started get_tables ";
// Include confi.php
include_once('confi.php');
//var_dump($_POST);
$request_body = file_get_contents('php://input');
// first store the given set of data to keep it for future analysis
$statement = "INSERT INTO tbl_archive (content) VALUES ('$request_body' );";
mysql_query($statement);
$input = json_decode($request_body, true);
// now check if valid user
$user = $input["user"];
$username = $user["username"];
$password = $user["password"];
if($password and $username){
$mySQLstring = "SELECT username, password, id, create_user FROM tbl_user where username = '$username' ;";
$json["statement"][] = $mySQLstring;
$qur = mysql_query($mySQLstring);
//var_dump ( $qur );
if ($qur){
$max = mysql_fetch_assoc($qur);
}
if ($max){
$json["max"] = $max;
if ($max["password"] == $password){
$json["username"] = $username;
$json["id"] = $max["id"];
$json["create_user"] = $max["create_user"];
$json["status"] = "ok";
$tables = array("class", "class_user", "module", "module_class", "module_user", "rating", "student", "student_class");
//$tables = array("class");
foreach($tables as $table){
if ( $table == 'module' ){
$statement ='SELECT create_user, MAX(id) FROM tbl_'.$table;
//$statement .= ' GROUP BY create_user' ;
$statement .= ' WHERE create_user = 19 ' ;
$qur = mysql_query($statement);
if ($qur){
while($r = mysql_fetch_array($qur, MYSQL_ASSOC)){
//var_dump($r);
//echo (json_encode($r));
$result[$table][] = $r;
}
}
}
}
$json = array("status" => "ok", "data" => $result);
}
}
}
@mysql_close($conn);
/* Output header */
header('Content-type: application/json');
echo json_encode($json);
?>
答案 0 :(得分:1)
PHP和JS分别在服务器和客户端上运行,因此您无法调用另一个的方法/函数。 AJAX的存在是为了在JS和服务器端代码之间传递值。