首页 > 解决方案 > indexfileiere:1 GET http://localhost:8888/samanelms/Filiere/indexfiliere 500 (Internal Server Error) 剥离学说 php

问题描述

我在 php 中使用教义。每次如果尝试检索数据库中的信息以进行选择请求。该请求将不会被执行,它会产生一个浏览器错误

与源代码

public function getListeOfFiliere(){
  if($this->db == null) return ;
  return $this->db->getRepository("Filiere")->findAll();
}

和数据库配置:

$orm = array('dbname' => 'dbname', 'user'     => 'user','port' =>'port','password' => 'password','host' => 'localhost','driver' => 'pdo_mysql');

标签: phpmysqldoctrine-ormdoctrine-1.2

解决方案


推荐阅读