init
This commit is contained in:
commit
72a26edcff
22092 changed files with 2101903 additions and 0 deletions
10
scripts/smsvorlage.php
Normal file
10
scripts/smsvorlage.php
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
if(isset($_POST['smstext'])) {
|
||||
|
||||
$GLOBALS['mysql']->insert("UPDATE sms_template SET vorlage='".$_POST['smstext']."' WHERE type='saso'");
|
||||
$success[]= "SMS vorlage wurde gespeichert."; $template->assign('success', $success);
|
||||
}
|
||||
$sms = $GLOBALS['mysql']->query_single("SELECT * FROM sms_template WHERE type='saso'");
|
||||
$template->assign('sms', $sms);
|
||||
$template->assign('content', 'tpl/smsvorlage.tpl');
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue