Archive for Tháng Năm, 2009
php – Chuyển từ IP sang Country [ ip 2 country ]
Ta dùng file countries.php:
<?php
$anp_cd["AD"]=array("Andorra", "Europe", "Andorra la Vella", "Euro");
$anp_cd["AE"]=array("United Arab Emirates", "Middle East", "Abu Dhabi", "UAE Dirham");
$anp_cd["AF"]=array("Afghanistan", "Asia", "Kabul", "Afghani");
$anp_cd["AG"]=array("Antigua and Barbuda", "Central America and the Caribbean", "Saint John's", "East Caribbean Dollar");
$anp_cd["AI"]=array("Anguilla", "Central America and the Caribbean", "The Valley", "East Caribbean Dollar");
$anp_cd["AL"]=array("Albania", "Europe", "Tirana", "Lek");
$anp_cd["AM"]=array("Armenia", "Commonwealth of Independent States", "Yerevan", "Armenian Dram");
$anp_cd["AN"]=array("Netherlands Antilles", "Central America [ READ MORE ]
AutoIt – Kiểm tra người dùng viết gì.
Global Const $WH_KEYBOARD_LL = 13
Global $hHook
Global $hStub_KeyProc = DllCallbackRegister("_KeyProc", "long", "int;wparam;lparam")
Global $hmod = DllCall("kernel32.dll", "hwnd", "GetModuleHandle", "ptr", 0)
Global $hHook = DllCall("user32.dll", "hwnd", "SetWindowsHookEx", "int", _
$WH_KEYBOARD_LL, "ptr", DllCallbackGetPtr($hStub_KeyProc), "hwnd", $hmod[0], "dword", 0)
Global $buffer = ""
MsgBox(4096, "", "Nhap chuot vao OK sau do mo Notepad va viet......." & _
@LF & @LF & "Jon" & @LF [ READ MORE ]
[AutoIt] Source tool Flood có GUI
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Version=beta
#AutoIt3Wrapper_icon=..\..\Desktop\thingsNSP\Babvil.ico
#AutoIt3Wrapper_outfile=..\..\Desktop\T2 Flood\T2 Flood.exe
#AutoIt3Wrapper_Res_Comment=Flood Shoutbox, bai viet, vv
#AutoIt3Wrapper_Res_Description=T2 Flood Beta
#AutoIt3Wrapper_Res_Fileversion=0.0.0.0
#AutoIt3Wrapper_Res_LegalCopyright=Copyright 2009 by thuongtin@gmail.com
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <GuiEdit.au3>
Global $coki
$Form1_1 = GUICreate("o0o T2 Flood Beta o0o", 627, 555, 192, 124, BitOR($WS_MINIMIZEBOX,$WS_SYSMENU,$WS_POPUP,$WS_GROUP,$WS_CLIPSIBLINGS))
GUISetBkColor(0x000000)
$T2 = GUICtrlCreateGroup(" o0o T2 Flood Beta o0o ", 24, 96, 577, 113, $BS_CENTER)
GUICtrlSetFont(-1, [ READ MORE ]