You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
396 B
PHTML

14 years ago
<?php
include "../includes/db.php";
include "../includes/config.php";
include "../includes/funktion_modem.php";
14 years ago
$SQL = "SELECT DECT FROM `User`;";
$Erg = mysql_query($SQL, $con);
14 years ago
echo mysql_error($con);
14 years ago
for($i=0; $i < mysql_num_rows($Erg); $i++) {
$Number = "#10" . mysql_result($Erg, $i, "DECT");
14 years ago
if(strlen($Number) == 7)
DialNumber($Number);
}
14 years ago
return 0;
?>