- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 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
function get($sel, $od='', $show_error=1)
{
global $__DB_CONN;
$select=$sel;
//echo $select.'<br>';
if($od=="")
{
$res=sql_execute($select, $show_error);
if(!$res)
return array();
$mc_runtime=get_magic_quotes_runtime();
set_magic_quotes_runtime(0);
$mas=array();
while($v=@mysql_fetch_assoc($res))
array_push($mas, $v);
set_magic_quotes_runtime($mc_runtime);
return $mas;
}
... //тоже самое еще пару раз
if($od=="by id")
{
$res=sql_execute($select, $show_error);
if(!$res)
return array();
$mc_runtime=get_magic_quotes_runtime();
set_magic_quotes_runtime(0);
$mas=array();
while($v=mysql_fetch_assoc($res))
$mas[$v["id"]]=$v;
set_magic_quotes_runtime($mc_runtime);
return $mas;
}
if($od=="ins")
{
$res=sql_execute($select, $show_error);
return mysql_insert_id($__DB_CONN);
}
return;
}
function get2($sel, $od='', $show_error=1)
{
global $__DB_CONN2;
$select=$sel;
//echo $select.'<br>';
if($od=="")
{
$res=sql_execute2($select, $show_error);
if(!$res)
return array();
$mc_runtime=get_magic_quotes_runtime();
set_magic_quotes_runtime(0);
$mas=array();
while($v=@mysql_fetch_assoc($res)) {
foreach($v as $ii=>$vv)
$v[$ii] = iconv('windows-1251','utf-8' ,$vv);
array_push($mas,$v);
}
set_magic_quotes_runtime($mc_runtime);
return $mas;
}
... //тоже самое еще пару раз
if($od=="ins")
{
$res=sql_execute2($select, $show_error);
return mysql_insert_id($__DB_CONN2);
}
return;
}
eth0 19.02.2012 17:20 # 0
Просто какое-то чёрное золото.
kyzi007 19.02.2012 21:55 # −1
TarasB 19.02.2012 22:11 # −1
istem 20.02.2012 00:04 # −1