当我选择复选框时,我尝试使用ajax创建会话变量joomla样式。这是我在select_thumb.ajax.php文件中的代码:
$_SESSION['ss'] = $value;
$response = $_SESSION['ss'];
echo $response;
}
exit;
// Get db connection
$db = JFactory::getDbo();
//create new query object
$query = $db->getQuery(true);
//Prepare insert query
$query
->insert($db->valueChbx('download_variable'))
// Set the query using populated query object and execute it.
$db->setQuery($query);
$db->execute();
?>
以下是我的HTML复选框:
<input type="checkbox" id="thumbselect" name="valueChbx" class="checkbox" value="/import/images/'+data[i]['filename']+'">';
我还没有通过javascript编码ajax,因为我想知道我是否应该使用onFocus?可能会选择多个复选框。感谢您提前提供任何帮助。
答案 0 :(得分:0)
不要在Joomla应用程序中使用PHP的默认会话变量使用其本机工厂。
设置会话变量
$session = JFactory::getSession();
$session->set('name', "value");
获取会话变量
$session = JFactory::getSession();
echo $session->get('name');
more。
希望它有所帮助..