Example #1
0
 public static function conectar()
 {
     self::$link = mysqli_connect("localhost", self::$user, self::$password, self::$basedatos) or die(mysqli_connect_error());
     mysqli_query(self::$link, "SET NAMES utf8");
 }