Undefined variable mysqli php

0

hello I have the following problem with this there is something wrong:

    $results = $mysqli->query ( " SELECT * fron jose");
    print '<table border="1">';

    while ($row=$results->fetch_assoc()) 
    {
      print '<tr>';
      print '<td>'.$row['id'].'</td>';
      print '<td>'.$row['User'].'</td>';
      print '<tr>';# code...
    }
      print '</table>';

    
asked by Jose Alberto Chirivella 31.10.2018 в 23:50
source

0 answers