hi..
i'm having this vb script which looks like this...
strData = "Hello World"
vntSource = "0129176204"
mobjClsMobiusLogin.SendTextMessage strData, vntSource, False
Public Function SendTextMessage(strMessage As String, vntPhoneNum As Variant, blnbillable As Boolean) As Boolean
Dim strConnName As String
If blnbillable = True Then
strConnName = mstrBillConn
Else
strConnName = mstrFreeConn
End If
frmSMSChat.winSSvr.SendData "0" & vbCrLf & strConnName & vbCrLf & vntPhoneNum & vbCrLf & strMessage & vbCrLf
Debug.Print strMessage
End Function
which trigger some **.dll file...
is it possible for me to integrate php with this *.dll....
could somebody translate the vb script to php .. or maybe some example which can help me doin this things......