RE: [PHP] Sending Data with Ascii data

2004-11-12 Thread Dev
Actually yes I have. Many times as a matter of fact. What was happing was that the 0xC1 was being translated into it dec form of 28. Thankfully i was able to resolve the issue by using: pack("C",28) But thanks Jay for the help! At 03:29 PM 11/12/2004, Jay Blanchard wrote: [snip] I am working on a

RE: [PHP] Sending Data with Ascii data

2004-11-12 Thread Jay Blanchard
[snip] I am working on a Socket script that needs to send a binary 0x1C to another applicaiton that is connected to the socket. Any way in PHP to do this so that I do not have to go and learn C++ over the weekend Does anyone have a clue what needs to be done to make this work? [/snip] Are we t

[PHP] Sending Data with Ascii data

2004-11-12 Thread Dev
Hello, I am working on a Socket script that needs to send a binary 0x1C to another applicaiton that is connected to the socket. Any way in PHP to do this so that I do not have to go and learn C++ over the weekend Does anyone have a clue what needs to be done to make this work? -- UMPA