-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoop_db.php
76 lines (60 loc) · 1.92 KB
/
oop_db.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
/**
* Создаем родительский класс с подключением к БД
*/
class BD
{
public $db_connect;
function __construct()
{
$this->db_connect=mysql_connect('localhost','alex','123456');
mysql_select_db("test",$this->db_connect);
mysql_query('set names utf8');
}
}
#Создали класс наследник который
#при создании подключается к нашей бд
class InsertNews extends BD
{
public $result; #В эту перменную записываем
#результат почти всех функций
#Добавть одну новость
function InsertOneNews($value,$where)
{
$request="INSERT INTO news_send ($where) VALUES ('$value')";
$this->result= mysql_query($request,$this->db_connect);
}
#Добавить новость целиком [заголовок]->[текст]
function InsertAllNews($where_text,$where_title,$title,$text)
{
$request="INSERT INTO news_send ($where_title,$where_text)
VALUES ('$title','$text')";
$this->result= mysql_query($request,$this->db_connect);
}
}
class SelectNews extends BD
{
public $result; #В эту перменную записываем
#результат почти всех функций
#Забрать заголовок последней новости
function SelectLastNews()
{
$max_id='SELECT MAX(id) FROM news_send';
$request='SELECT title_news FROM news_send WHERE id = ('.$max_id.')';
$this->result = mysql_fetch_array(mysql_query($request));
return $this->result[0];
}
//Забрать из БД N последних записей
function SelectManyNews($how_many)
{
$request=mysql_query("SELECT title_news, text_news FROM news_send ORDER BY id LIMIT ".$how_many);
while ($result = mysql_fetch_array($request,MYSQL_ASSOC)) {
$NEWS[]=$result;
}
return $NEWS;
}
}
//Пример вызова функции
//$Dase=new News();
//print_r( $Dase->SelectManyNews('3'));
?>