4
0
mirror of https://github.com/cwinfo/envayasms.git synced 2025-07-03 13:47:44 +00:00

PHP server library with example implementation; add 'check now' button on menu

This commit is contained in:
Jesse Young
2011-09-12 16:53:38 -07:00
parent d5b973411b
commit cb8d95ebd5
16 changed files with 442 additions and 29 deletions

9
server/php/example/config.php Executable file
View File

@ -0,0 +1,9 @@
<?php
$PASSWORDS = array(
'16505551212' => 'rosebud',
'16505551213' => 's3krit',
);
$PHONE_NUMBERS = array_keys($PASSWORDS);
$OUTGOING_DIR_NAME = __DIR__."/outgoing_sms";