Hey,
Does anyone have a ASCII to hex function? I have one for Visual Basic, but I don't know how to convert it to PHP. Anyway, here's the Visual Basic version:
Public Function AsctoHex(astr)
On Error Resume Next
For x = 1 To Len(astr)
hc = Hex$(Asc(Mid$(astr, x, 1)))
nstr = nstr & String(2 - Len(hc), "0") & hc
Next
AsctoHex = nstr
End Function
Thanks in advance.