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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
|
|
<?PHP
|
|
|
|
|
// l<>scht alle eintrag in der telefonanlage, indem jede nummer einz<6E>hln gel<65>scht wir (#10<NUMBER>)
|
|
|
|
|
|
|
|
|
|
include ("./inc/db.php");
|
|
|
|
|
include ("./inc/config.php");
|
|
|
|
|
include ("./inc/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;
|
|
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|