디렉토리 구조

- gnuboard(폴더)

- index.php


index.php에서 그누보드에서 생성한 테이블에 접근할 수 있는건가요?



<?php
$link=mysqli_connect("localhost", "gnutest", "12341234") or die("서버 접속 에러");
$sql = " select * from g5_shop_item";


if(function_exists('mysqli_query')) {
echo "hello";
try {
$result = mysqli_query($link, $sql);
} catch (Exception $e) {
$result = $e;
}
} else {
echo "mysqli_query function is not exits";
}
echo $result;
?>

이런식으로 접속하려 하는데 No database selected in 이 뜨네요.. ㅠㅠ