correção query aluno

This commit is contained in:
Reginaldo
2023-06-14 12:25:16 -03:00
parent 38cbb4dc8c
commit 92ca515d7e
4 changed files with 42 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace app\controllers;
class AlunoController{
public function index($params){
$numero = $params->NR_LOGRADOURO;
$Con = new Controller();
$Alunos = $Con->getAlunos($numero);
echo json_encode($Alunos);
return json_encode($Alunos);
}
public function store(){
var_dump('store do login');
}
}