|
|
|
oop นะครับ คือต้องการเขียน class ในการบันทึกข้อมูลลงดาต้าเบสนะครับclass บันทึกมี method บันทึกข้อมูลนักศึกษา |
|
|
|
|
|
|
|
ผมมีเท่านี้ แต่ของท่านอื่นอาจจะเยอะกว่านี้ครับ
<?php
class dc_db
{
var $host;
var $username;
var $pw;
var $db;
function __construct($host,$username,$pw,$db)
{
$this->connectdb($host,$username,$pw,$db);
}
function connectdb($host,$username,$pw,$db)
{
$this->conn=@mysql_connect($host,$username,$pw);
if(!$this->conn)
{
echo mysql_error();
}
else
{
$this->selectdb($db);
}
}
function selectdb($db)
{
$this->sldb=@mysql_select_db($db,$this->conn);
if(!$this->sldb)
{
echo mysql_error();
}
else
{
return true;
}
}
function query($sql) // update , insert select delete
{
mysql_query("SET NAMES utf-8");
$this->result=mysql_query($sql);
if($this->result)
{
return $this->result;
}
else
{
echo mysql_error();
}
}
}
เท่านี้ผมหากินได้เยอะเลยครับ ลองดู
|
|
|
|
|
Date :
2010-06-19 16:48:21 |
By :
kalamell |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณท่าน U มากมายครับ
|
|
|
|
|
Date :
2010-06-19 18:33:53 |
By :
sleepington |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|