This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| //輸入處裡 | |
| $in = array(); | |
| foreach ($_GET as $key => $value) { | |
| $in[$key] = mysql_real_escape_string($value); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import urllib2, urllib | |
| import time | |
| from threading import Thread | |
| URL = 'http://#########' | |
| Count = 5 | |
| def myfunc(i): | |
| data = {} |
NewerOlder