Home > Backend Development > PHP Tutorial > joomla数据库操作示例代码_PHP

joomla数据库操作示例代码_PHP

WBOY
Release: 2016-05-28 11:49:30
Original
1030 people have browsed it

本文实例讲述了joomla数据库操作的方法。分享给大家供大家参考,具体如下:

1、jTable

$row =& JTable::getInstance('comment', 'Table');
$row->load($id);
$row->bind(JRequest::get('post'))
$row->store()

Copy after login

2、jModel

$this->_db->setQuery($query);
$this->_db->loadObject();
$this->_getList($query, 0, 0); 

Copy after login

3、jFactory

$db =& JFactory::getDBO();
$query = "SELECT count(*) FROM #__reviews";
$db->setQuery( $query );
$total = $db->loadResult();
$query = "SELECT * FROM #__reviews";
$db->setQuery( $query,$limitstart, $limit );
$rows = $db->loadObjectList();

Copy after login

希望本文所述对大家基于joomla的PHP程序设计有所帮助。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template