我想将我的普通数据库应用程序转换为XAJAX应用程序(无需重新加载)。 我的应用程序基于使用GET和POST请求发送和读取数据(页面加载后)。
如何在不刷新的情况下将数据传递给url?
示例:我想在不使用<a href="index.php?action=edit&id='. $row['CountryID'] .'">
可以使用XAJAX吗?
我可以在$objResponse->assign("div", "innerHTML", $HERE);
发送数组吗?
答案 0 :(得分:1)
创建一个功能,接收您提交的ID。例如
function name_function($id){
$response = new xajaxResponse();//to post the answer
//what you do
$response->assign("your_div","innerHTML",$variable_that_you_use);
return $response
}