cleanup of extras

git-svn-id: svn://192.168.202.10@17 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
mattf
2006-07-07 15:44:57 +00:00
parent 3716a7fea9
commit 93b5fa1e52
558 changed files with 224656 additions and 307 deletions
@@ -0,0 +1,30 @@
<?
### test.php
###
### Copyright (C) 2006 Matt Florell <vicidial@gmail.com> LICENSE: GPLv2
###
$STARTtime = date("U");
$STARTdate = date("Y-m-d H:i:s");
$link=mysql_connect("localhost", "cron", "1234");
mysql_select_db("asterisk");
$stmt="SELECT * from phones;";
$rslt=mysql_query($stmt, $link);
$row=mysql_fetch_row($rslt);
$auth=$row[0];
print "|$auth|\n";
exit;
?>