diff options
author | Antonio Gallo <tonicucoz@gmail.com> | 2012-04-16 23:20:01 +0000 |
---|---|---|
committer | Antonio Gallo <tonicucoz@gmail.com> | 2012-04-16 23:20:01 +0000 |
commit | 891d0f86a6b3c17e5625979a5030727a73412e8d (patch) | |
tree | 44ec5305baa9c5b9aca86f15a87cbc72bfc823ba /scripts/vendorid/connect.php | |
parent | 51c194e1c1ba0c5beadcf1e72187894a177d1b71 (diff) |
added the scripts to fill the database with the vendorid codes from pci.ids
Diffstat (limited to 'scripts/vendorid/connect.php')
-rw-r--r-- | scripts/vendorid/connect.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/scripts/vendorid/connect.php b/scripts/vendorid/connect.php new file mode 100644 index 0000000..cb078be --- /dev/null +++ b/scripts/vendorid/connect.php @@ -0,0 +1,23 @@ +<?php + +//created by Antonio Gallo (tonicucoz@yahoo.com) +// this script is in the Public Domain + +$host = ''; +$user = ''; +$password = ''; +$dbName = ''; + +class DB +{ + public static $instance; +} + +DB::$instance = new mysqli($host,$user,$password,$dbName); + +if (mysqli_connect_error()) +{ + die('Connect Error (' . mysqli_connect_errno() . ') ' . mysqli_connect_error()); +} + +?>
\ No newline at end of file |