>  기사  >  백엔드 개발  >  asp.net 데이터베이스 연결은 이전 PHP 데이터베이스 연결 클래스를 통합합니다~~ 페이징 클래스를 만듭니다!

asp.net 데이터베이스 연결은 이전 PHP 데이터베이스 연결 클래스를 통합합니다~~ 페이징 클래스를 만듭니다!

WBOY
WBOY원래의
2016-07-29 08:35:20937검색

PHP를 배울 미래가 있을지 모르겠네요~ 글을 쓸수록 지루해지네요
클래스 생성b //수업 시작
{
var $db= "localhost";//데이터베이스 주소;
var $dbname = "root";//사용자 이름;
var $dbpwd = "";//Password
var $dbtable = " mysql";//사용된 데이터베이스
var $conn; //데이터베이스 연결;
var $result; //결과 세트
var $mysql; //실행된 mysql
var $row; // 결과 집합에서 데이터 찾기
function createconn( ) //이 클래스 메서드는 conn 연결을 시작한 다음 데이터베이스 선택을 시작하는 것입니다.
{
$this->conn = mysql_connect($this-> ;db,$this->dbname,$this-> ;dbpwd)
mysql_select_db($this->dbtable,$this->conn)
}
function getresule() / /이것은 결과 집합을 가져오는 것입니다.
{
$this->result = mysql_query($this->mysql,$this->conn)
}
function getrow() //앞으로 결과 집합 포인터 생성
{
$this->row = mysql_fetch_array($this->result)
return $this->row
}
function closedatabase()
{
mysql_close( $this->conn)
}
}//클래스가 종료되고 mysql 데이터베이스 데이터를 읽기 위해 클래스를 호출하기 시작합니다
/ /데이터베이스 연결 코드를 디버깅하세요.
/* $bb = newcreatedb //클래스 인스턴스화
$bb->createconn();//클래스 연결 호출
$bb->mysql ="select * from friends_conf";
$ bb->getresule(); //결과 세트를 가져오기 위해 클래스 호출
while($bb->getrow()){ //클래스 호출 포인터를 생성하고 루프를 앞으로 읽어 데이터를 읽으려면
echo($bb ->row["confname"])
echo($bb->row["confvalue"]);
}*/
?>
//Paging 클래스~ 상속 위 메소드
클래스 pagefy extendscreatedb{
var $nametatol; of records
var $namemust = 1; //각 페이지에 표시하려는 내용 레코드 수
var $pageall
var $i = 1; var $m; var $p = 8; //표시할 페이지 번호;
var $a
function gettatol() //전체 레코드 수를 가져오는 방법
{ //먼저 데이터베이스에 연결합니다.
$this->nametatol = $this->row[0]; //총 레코드 수
}
function getpage() //총 페이지 수 가져오기
{
$this->pageall = $this->nametatol % $this->namemust;
if($ this->pageall)
{
$this->pageall = ( int)($this->nametatol / $this->namemust) 1;
return $this->a = $this->pageall
}
else
{
return $this->a = $this->pageall = (int)($this->nametatol / $ this->namemust)
}
}
function num_pl( ) //페이지 번호 표시
{
$this->pageall = $this->pageall - ($this ->pageall - $this->p)
while($this ->pageall)
{
echo("$this->i")
echo(" "); //어떤 종류의 디스플레이를 추가하시겠습니까? this->pageall =$this->pageall -1
}
}
function get_num_pl() //LIMIT의 이전 매개변수(시작 ROW 번호)
{
$this->m = $_GET["n"] * $this->namemust - $this->namemust
}
function showpage() //페이지가 매겨진 콘텐츠 표시
{
$this->createconn()
$this->mysql="select * from friends_conflimit $this-> m ,$this->namemust";
$this->getresule();
while($this->getrow())
{
echo($this-> row ["confname"]); //읽고 싶은 필드를 직접 추가하세요
echo($this->row["confvalue"])
}
}
function firstpage ( ) //홈페이지
{
echo("홈페이지")
}
function backpage() // 이전 페이지
{
if($this->i = $_GET["n"] - 1)
{
echo("
이전 페이지");
}
}
function nextpage() //다음 페이지
{
$ this->i = $_GET["n"] 1;
if($this->i <= $this->a)
{
echo("
다음 페이지");
}
}
function footpage() //마지막 페이지
{
echo("< a href='pagefy.php?n=$this->a'>마지막 페이지
");
}
}
?>
$mm = new pagefy;
$mm->createconn()
$mm->mysql="select count(*) from friends_conf"; ;getresule();
$mm->gettrow()
$mm->getpage (); $mm->num_pl()
$mm->get_num_pl()
$mm->closedatabase(); ;
$mm->firstpage();
$mm->footpage(); 🎜>?>
이 클래스가 디버깅되었습니다! 사용하기 매우 쉽습니다 ~~~~~~~~~~~~~~~~
클래스는 당신입니다. 칼~ 다듬지 않으면 미리 하면 너무 힘들어서 싸울 때까지 기다리면 된다!~ 너 죽어버릴 거야~~
시간 나면 바로 함수형 클래스 써볼게~~~~~~                      >해야지 제 카테고리는 비교적 간단하다고 하네요~~ 이해가 안가시면 물어보세요~

위는 asp.net 데이터베이스 연결을 소개합니다. 이전 PHP 데이터베이스 연결 클래스를 통합하여 페이징 클래스로 만듭니다. 관심 있는 친구들에게 도움이 되길 바랍니다. PHP 튜토리얼에서.