calling dll function from php program
- by satish-fbg
I've made a program in php where i got to call a dll function.. that dll contains some hashcode.. i call this dll's function from vb6 through this code:
Private Declare Function GetHash Lib "hashGen.dll" (ByVal tEncode As String) As Long
Private Sub get_Key()
MsgBox GetHash("hello world")
end sub
can anybody tell me how to call this function in PHP?
here's my dll file:
http://www.4shared.com/file/-hdichIS/hashGen.html
thnx..