1<?php
2
3/* check if we are able to connect to database ! */
4
5# initialize install class
6$Install = new Install ($Database);
7# try to connect, if it fails redirect to install
8$Install->check_db_connection(true);
9# connection is ok, check that table exists
10$Install->check_table("vrf", true);