$dbconn=mysql_connect("localhost","user","userpw");
$status=mysql_select_db("db",$dbconn);
$status=mysql_select_db("db",$dbconn);
$q="select * from download_server";
$re=mysql_query($q,$dbconn);
$total=mysql_num_rows($re);
for($k=1;$k<=$total;$k++) {
$data=mysql_fetch_array($re);
$num=$data[num];
}
mysql_close($dbconn);
'Programming > PHP' 카테고리의 다른 글
PHP Performance (튜닝의 지름길) (0) | 2007.05.18 |
---|---|
[PHP] 파일 읽고 쓰기 fOpen fWrite (0) | 2007.05.17 |
[PHP] 간단한 스위치(switch) 구문 (0) | 2007.05.17 |
[PHP] 문자 장난 (0) | 2007.05.17 |
[PHP] 날자관련 (date,mktime) (0) | 2007.05.17 |