Commit a61ed63fa8e0de4ac9d5a7e9f2739bec01c29537

Authored by Leandro Arndt
1 parent 14506687
Exists in mysqli

mysqli

Showing 1 changed file with 3 additions and 3 deletions   Show diff stats
acompanhamento/cadastro.php
... ... @@ -261,7 +261,7 @@
261 261 <?php
262 262 $rsMov = Solicitacao::getMovimentacao($idsolicitacao);
263 263  
264   - while($row = mysql_fetch_array($rsMov)){
  264 + while($row = mysqli_fetch_array($rsMov)){
265 265 ?>
266 266 <tr>
267 267 <td><?php echo bdToDate($row["dataenvio"]);?></td>
... ... @@ -292,7 +292,7 @@
292 292  
293 293  
294 294  
295   - if(mysql_num_rows($rsRec) > 0)
  295 + if(mysqli_num_rows($rsRec) > 0)
296 296 {
297 297 $permiterecurso = false;
298 298 ?>
... ... @@ -310,7 +310,7 @@
310 310 <th>Data Resposta</th>
311 311 </tr>
312 312 <?php
313   - while($row = mysql_fetch_array($rsRec)){
  313 + while($row = mysqli_fetch_array($rsRec)){
314 314 ?>
315 315 <tr>
316 316 <td><?php echo bdToDate($row["datasolicitacao"]);?></td>
... ...