예제 #1
0
파일: index.php 프로젝트: ksparkar/oolearn
<?php

include "db.class.php";
$db = new DBClass();
if ($db->errorno) {
    echo $db->errorno . " : " . $db->errormsg;
} else {
    echo $db->getLink();
}