I have the following code which gets all news:
private function get_news()
{
$news = array();
$query = $this->database->query("SELECT * FROM `news` ORDER BY `news_id` DESC");
while($row = mysql_fetch_array($query))
{
$news[] = $row;
}
return $news;
}
In the same class I have a bbedit()
function. I want to get the value of $news
[int]['news_content']
and pass it to that function bbedit()
.
Use
$this
to call a function within class:or