add Web Page

This commit is contained in:
dennydai 2016-02-26 23:17:32 +08:00
parent 0b04bbc64a
commit b076fbee65
2 changed files with 14 additions and 0 deletions

9
classes/Web/Base.php Normal file
View File

@ -0,0 +1,9 @@
<?php
class Base
{
public function msg($id, $msg)
{
echo $msg;
return;
}
}

5
classes/Web/init.php Normal file
View File

@ -0,0 +1,5 @@
<?php
$BOT = new Base;
$from = 'WebClient';
$text = $_GET['c'];