summaryrefslogtreecommitdiff
path: root/services/dect_clear.php
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2013-09-18 01:38:36 +0200
committerPhilip Häusler <msquare@notrademark.de>2013-09-18 01:38:36 +0200
commitbfb0cacd541cc20129a3c0ac77130370741dca18 (patch)
tree0a0e86e1a53d712065664c12d06603bc044df9ec /services/dect_clear.php
parentd50cc21f50cb3ec3afdabb74a20d81bd1a53dfbd (diff)
mysql to mysqli and a lot of cleanup and mvc
Diffstat (limited to 'services/dect_clear.php')
-rwxr-xr-xservices/dect_clear.php19
1 files changed, 0 insertions, 19 deletions
diff --git a/services/dect_clear.php b/services/dect_clear.php
deleted file mode 100755
index b49b1e40..00000000
--- a/services/dect_clear.php
+++ /dev/null
@@ -1,19 +0,0 @@
-<?php
- include "../includes/db.php";
- include "../includes/config.php";
- include "../includes/funktion_modem.php";
-
- $SQL = "SELECT DECT FROM `User`;";
- $Erg = mysql_query($SQL, $con);
-
- echo mysql_error($con);
-
- for($i=0; $i < mysql_num_rows($Erg); $i++) {
- $Number = "#10" . mysql_result($Erg, $i, "DECT");
-
- if(strlen($Number) == 7)
- DialNumber($Number);
- }
-
- return 0;
-?>