Files
agc_2-X/LANG_admin/astguiclient/test.php
T
root ff91d93a2d initial 2.0 tree trunk
git-svn-id: svn://192.168.202.10@18 3d104415-ff17-0410-8863-d5cf3c621b8a
2006-07-07 15:57:03 +00:00

31 lines
394 B
PHP

<?
### 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;
?>