I would like your help to turn the following code into PHP PDO.
I made the following conversions and commented the front of the code, just to heal the doubt itself. Will the conversion be correct?
<?php
function retorna($cod_material, $conn){
$result_aluno = "SELECT nome FROM lista_geral WHERE cod_material = '$cod_material' LIMIT 1";
$resultado_aluno = mysqli_query($conn, $result_aluno);
//$resultado_aluno = $pdo->query($conn, $result_aluno); //CONVERTIDO
if($resultado_aluno->num_rows){
$row_aluno = mysqli_fetch_assoc($resultado_aluno);
//$row_aluno = PDO::FETCH_ASSOC($resultado_aluno); //CONVERTIDO
$valores['nome'] = $row_aluno['nome'];
}else{
$valores['nome_aluno'] = 'Aluno não encontrado';
}
return json_encode($valores);
}
if(isset($_GET['cod_material'])){
echo retorna($_GET['cod_material'], $conn);
}
?>