42868d70
andryeyev
Создал GIT
|
1
2
3
4
5
6
7
8
9
10
11
|
<?php
header("Content-type: text/html; charset=windows-1251");
require("../libs/setup.php");
$setup = new setup();
$row_tpl = $setup->db->getRow("select * from sms_tpl where id=?",array($_GET['tplID']),DB_FETCHMODE_ASSOC);
print trim($row_tpl['msg']);
?>
|