=0){ mysqli_data_seek($res,$row); $resrow = (is_numeric($col)) ? mysqli_fetch_row($res) : mysqli_fetch_assoc($res); if (isset($resrow[$col])){ return $resrow[$col]; } } return false; } function mysql_get_server_info() { global $dbconnect; return mysqli_get_server_info($dbconnect); } function mysql_set_charset($csname) { global $dbconnect; return mysqli_set_charset($dbconnect,$csname); } function mysql_fetch_object($result) { return mysqli_fetch_object($result); } } ?>