manusoftar

Untitled

Oct 24th, 2013
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1.  $query = new PreparedQuery("SELECT * FROM Dominio;");
  2.             $query->select(array("uid"=>$valor));
  3.            
  4.             $resultados = array();
  5.             while($query->fetch_row()){
  6.                  array_push($resultados,$query->row);
  7.                  print_r($query->row);
  8.                  echo "\n";
  9.             }
  10.             echo "\nResultados:";
  11.             print_r($resultados);
Advertisement
Add Comment
Please, Sign In to add comment