1234567891011121314151617 |
- <?php
- include_once("../auth.php");
- if (isset($_GET['classType']) && $_GET['classType'] != ""){
- $classtype = $_GET['classType'];
- if (file_exists("drivers/" . $classtype . "/classname.inf")){
- echo file_get_contents("drivers/" . $classtype . "/classname.inf");
- }else{
- if (file_exists("drivers/" . $classtype . "/")){
- echo "Unknown Device";
- }else{
- echo "Driver Not Found";
- }
-
- }
- }
- ?>
|