핵초보입니다..mysqli 코드오류좀 봐주실 능력자분 계신가요 ㅠ
본문
44 <?php 45 $conn = mysqli_connect('생략','생략','생략','생략');
45 $sql = "SELECT count(*) FROM g5_write_portfolio WHERE ca_name = 'Web'"; 46 $row = mysqli_query($conn, $sql); 47 $result = mysqli_num_rows($row); 48 49 echo $result; 50 ?>
연습겸 이런식으로 작성을 해봤는데요.
코드가 엄청 틀려서 이게 뭐지..? 하실수 있으시겠지만 초보인점 양해부탁드립니다..
이렇게 하면 오류는 아래와 같이 뜹니다..
Warning: mysqli_connect(): (HY000/1130): Host '112.175.184.69' is not allowed to connect to this MySQL server in /host/home/jaejung/html/skin/latest/gallery/latest.skin.php on line 45
Warning: mysqli_query() expects parameter 1 to be mysqli, boolean given in /host/home/jaejung/html/skin/latest/gallery/latest.skin.php on line 47
Warning: mysqli_num_rows() expects parameter 1 to be mysqli_result, null given in /host/home/jaejung/html/skin/latest/gallery/latest.skin.php on line 48
갓시작한 초보라서 막 틀렸을수도있는데 봐주시면 감사하겠습니다 ㅠ
방금 확인해봤는데 php버전은 5.6 이네요.
답변 1
그누보드면 설치되어 있다면 되어 있습니다.
따로 연결해서 연습하시는거라면
mysqli_connect('localhost', 'my_user', 'my_password', 'my_db');
정보가 틀린게 없는지 확인을 먼저 해보세요.