상세 컨텐츠

본문 제목

그누보드 쿼리 날리기 & 쿼리로 값가져오기 ( SELECT 문사용법)

개발생활/php

by 한국인맛집 2019. 1. 3. 14:25

본문

반응형

그누보드 SELECT 쿼리 사용하기.





<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
</head>
<body>
  
  <table class="table">
     <thead>
        <th> 이름  </th>
        <th> 나이  </th>
        <th> 성별  </th>
    </thead>
    
    <tbody id="member-list">
     
  <?php

    $sql = "SELECT name, age, gender myTable WHERE reginId='".$resionId."';";
    
     // myTable이름의 테이블 에서
    //이름,나이 ,성별 값들을 가져오는데 reginId 가 변수값이랑 같은경우가져옴.
    

    $result = sql_query($sql,false);
    // 그누보드에서 쿼리를 날려주는 함수

    for($a = 0; $row = sql_fetch_array($result); $a++){
     // row변수안에 배열로 값이들어온다.
        echo '<tr><td>'. $row['name'].'</td>';
        echo '<td>'. $row['age'].'</td>';
        echo '<td>'.$row['gender'].'</td>';
     //  row 변수의 이름 키값에 해당하는 Value 를 가져옴.

     echo '</tr>';

      }
   ?>
    </tbody>
  </table>
  
  
  
  
  
</body>
</html>



반응형

'개발생활 > php' 카테고리의 다른 글

php current Date code  (0) 2018.12.27

관련글 더보기