Esempio n. 1
0
 /**
  * Ricerca sulla Tabella
  * Catalogo se è presente
  * quel Prodotto con quel
  * nome
  * @param type $tag
  * @return type
  */
 function RicercaPerNome($tag)
 {
     $tag = strtoupper($tag);
     //Nel DB sono tutte maiuscole
     $ArrayRisultati = parent::search_contains("Catalogo", "Nome", $tag);
     return $ArrayRisultati;
 }