์๋ ํ์ธ์ Dipokal HHJ ์ ๋๋ค.
์ด๋ฒ์๊ฐ์๋ index.php ์์ comm_list.php ๋ฅผ Ajax ๋ก ๋ถ๋ฌ์์ index.php ์ ์ถ๋ ฅ์ ํด๋ณผ๊ฒ๋๋ค.
ํ์ฌ ๊ฐ๋ฐ์ค์ธ ์นํ์ด์ง ์ ๋๋ค.
๋จผ์ index.php ์ ์๋ฐ์คํฌ๋ฆฝํธ๋ฅผ ์์ฑํ ๊ฒ๋๋ค.
์ด ์ฝ๋๋ </body> ๋ฐ๋ก ์์ ์์ฑํฉ๋๋ค.
* ์๋ ์ฝ๋๋ฅผ ์ฌ์ฉํ๊ธฐ ์ํด์๋ index.php ์
<script src="//code.jquery.com/jquery-3.2.1.min.js"></script>
๋ฅผ ์ฝ์ ํ์๊ณ ์ฌ์ฉํด ์ฃผ์ธ์
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<script type="text/javascript">
$(document).ready(function(){
loading();
function loading(){
$.ajax({
url: 'comm_list.php' ,
dataType : 'html' ,
success: function(data) {
$("#result").html(data);
}
});
}
});
</script>
|
๋ค์์ผ๋ก comm_list.php ๊ฐ ํ์๋๋ ์ง์ ์
1
|
<div id="result"/>
|
์ด ์ฝ๋๋ฅผ ์ฝ์ ํด ์ฃผ์ธ์
๋ค์์ comm_list.php ์ ๋๋ค.
comm_list.php ๋ php ์ mysql ์ ์ด์ฉํฉ๋๋ค.
์์ฑ ์๋ น์
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
//php 5.6 ๊ธฐ๋ฐ์ผ๋ก ์์ฑ๋จ.
//์๋์ ๋ชจ๋ ์์ค์ฝ๋๋ ์ค์ DeVent ์นํ์ด์ง์ ์ ํ ๋ค๋ฆ
๋๋ค. ์ดํด๋ฅผ ๋๊ธฐ์ํด ์์ฑํ ์ฝ๋ ์
๋๋ค.
//Mysql ์ฟผ๋ฆฌ ์คํ
$q = "SELECT * FROM commlist order by idx desc limit 50";
$result = mysql_query($q);
if($result === FALSE) {
die(mysql_error());
}
//๊ฒ์๊ธ
while($row = mysql_fetch_array($result)){
?>
<div class='alert alert-light' role='alert'>
<b><?=$row['name']?></b>
</div>
<?php
}
?>
|
์ด๋ ๊ฒ ์์ฑํ์๊ณ index.php ๋ฅผ ์ด๊ฒ๋๋ฉด
comm_list.php ํ๋ฉด์ด ๋ฆฌ๋๋ ์ ์์ด ๋ณด์ฌ์ง๊ฒ ๋ฉ๋๋ค.
๊ฐ์ฌํฉ๋๋ค.
'๐ป๊ธฐ์ > ๊ธฐํ' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[ ํด๋ฃจ๋์ค ] ๊ฐ๋ฐ์ผ์ง #1 - ๊ฐ๋ฐํ๊ฒฝ ์ธํ (4) | 2020.01.24 |
---|---|
S7 OneUI&์๋๋ก์ด๋ 9 ๋ธ๋๋ค์ด์๋ชฌ๋ 5.1 ๋ฆฌ๋ทฐ (0) | 2019.12.13 |
ํ์ด์ค๋ถ ๋ฐ๋ผ ๋ง๋ค๊ธฐ - 1๋ ์ด๋ ์๊ฐ์ด ํ๋ฅด๊ณ ... (2) | 2019.12.11 |
์ฒญ์๋ ๋ค์ด ๋ง๋๋ ์น์ฌ์ดํธ, DeVent (0) | 2019.08.18 |
์คํ์์ด ๋ง๋ ํํ์ด์ง, DeVent (0) | 2019.05.02 |