我不知道如何编写 PHP 函数。
我收到此错误“不在对象上下文中使用 $this”。
我只插入了第 3 行和第 4 行(MySQL 连接代码),其余代码都很好。
如何修复这些线条?
<?php
$this->connection = mysql_connect('localhost', 'mbrconsu_un394x', 'y1cz9,rd+hf6') or die(mysql_error());
mysql_select_db('mbrconsu_mmx', $this->connection) or die(mysql_error());
$sql="SELECT tema FROM treinamentos ORDER BY tema ASC";
$result = mysql_query($sql);
$stack=array();
while($row = mysql_fetch_array($result))
{
array_push($stack,array($row['column1'],$row['column2']));
}
echo json_encode($stack);
?>